Browse Source

Move init to HTML

Thomas Dy 7 years ago
parent
commit
a1f2cb4928
2 changed files with 7 additions and 7 deletions
  1. 7 0
      dist/index.html
  2. 0 7
      src/index.ts

+ 7 - 0
dist/index.html

@@ -62,5 +62,12 @@
       </div>
     </template>
     <script type="text/javascript" src="bundle.js"></script>
+    <script type="text/javascript">
+      util.loadBase();
+      new game.MainController(
+        document.querySelector('#container'),
+        'levels.json'
+      ).start();
+    </script>
   </body>
 </html>

+ 0 - 7
src/index.ts

@@ -1,7 +0,0 @@
-/// <reference path="util.ts" />
-/// <reference path="game.ts" />
-
-util.loadBase();
-let container: HTMLElement = document.querySelector('#container');
-let controller = new game.MainController(container, 'levels.json');
-controller.start();