diff options
author | elioat <elioat@tilde.institute> | 2024-07-06 20:01:20 -0400 |
---|---|---|
committer | elioat <elioat@tilde.institute> | 2024-07-06 20:01:20 -0400 |
commit | 5989722c24c3091984a95e5917426e4371e4752f (patch) | |
tree | 793d16eeea1d02ea67b00f5f5a9915185398465e /js/puzzle-dungeon/index.html | |
parent | 3a3a78a4e07834bdae6a22e0f199849420bbd6f7 (diff) | |
download | tour-5989722c24c3091984a95e5917426e4371e4752f.tar.gz |
*
Diffstat (limited to 'js/puzzle-dungeon/index.html')
-rw-r--r-- | js/puzzle-dungeon/index.html | 7 |
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> |