Anders and Briegel in Python
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
235B

  1. // Import modules
  2. requirejs(["anders_briegel", "gui", "graph"], init);
  3. var ab;
  4. // Called on startup
  5. function init(anders_briegel, gui, graph) {
  6. ab = anders_briegel;
  7. graph.hookEvents();
  8. gui.construct();
  9. gui.render();
  10. }