diff options
author | elioat <elioat@tilde.institute> | 2024-12-24 15:58:33 -0500 |
---|---|---|
committer | elioat <elioat@tilde.institute> | 2024-12-24 15:58:33 -0500 |
commit | 645c988da93b92dcddda87a314f64cd1b5ae1cd7 (patch) | |
tree | 8016ffb3f0cef32a397c73d16d518f475a8e3d2d /html/rogue/index.html | |
parent | 8d4ebce0ef9eb7495e2b27a9a4df5f6001f7e65f (diff) | |
download | tour-645c988da93b92dcddda87a314f64cd1b5ae1cd7.tar.gz |
*
Diffstat (limited to 'html/rogue/index.html')
-rw-r--r-- | html/rogue/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/html/rogue/index.html b/html/rogue/index.html index 2920841..ef37885 100644 --- a/html/rogue/index.html +++ b/html/rogue/index.html @@ -14,13 +14,13 @@ </head> <body> <canvas id="gameCanvas"></canvas> - <!-- Load renderer.js first since other files depend on its functions --> + <!-- Load config first since other files depend on it --> + <script src="js/config.js"></script> <script src="js/renderer.js"></script> <script src="js/input.js"></script> <script src="js/world.js"></script> <script src="js/player.js"></script> <script src="js/camera.js"></script> - <!-- Load rogue.js last as it uses functions from all other files --> <script src="js/rogue.js"></script> </body> </html> |