about summary refs log tree commit diff stats
path: root/js/puzzle-dungeon/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'js/puzzle-dungeon/index.html')
-rw-r--r--js/puzzle-dungeon/index.html7
1 files changed, 5 insertions, 2 deletions
diff --git a/js/puzzle-dungeon/index.html b/js/puzzle-dungeon/index.html
index a238af3..ed13d3d 100644
--- a/js/puzzle-dungeon/index.html
+++ b/js/puzzle-dungeon/index.html
@@ -15,7 +15,10 @@
         <textarea id="commands" rows="10" cols="30"></textarea><br>
         <button type="submit">Submit</button>
     </form>
-
-    <script src="game.js"></script>
+    <script type="module">
+    import './parser.js';
+    import './commandHandler.js';
+    import './game.js';
+    </script>
 </body>
 </html>