diff options
Diffstat (limited to 'html/rogue/index.html')
-rw-r--r-- | html/rogue/index.html | 29 |
1 files changed, 20 insertions, 9 deletions
diff --git a/html/rogue/index.html b/html/rogue/index.html index ef37885..655c4cb 100644 --- a/html/rogue/index.html +++ b/html/rogue/index.html @@ -1,10 +1,15 @@ <!DOCTYPE html> -<html> +<html lang="en"> <head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Rogue</title> <style> - body { + body, html { margin: 0; + padding: 0; + width: 100%; + height: 100%; overflow: hidden; } canvas { @@ -14,13 +19,19 @@ </head> <body> <canvas id="gameCanvas"></canvas> - <!-- 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/animation.js"></script> + <script src="js/hex.js"></script> <script src="js/camera.js"></script> - <script src="js/rogue.js"></script> + <script src="js/fow.js"></script> + <script src="js/items.js"></script> + <script src="js/inventory-ui.js"></script> + <script src="js/player.js"></script> + <script src="js/debug.js"></script> + <script src="js/game.js"></script> + <script src="js/utils.js"></script> + <script src="js/state.js"></script> + <script src="js/renderer.js"></script> + <script src="js/events.js"></script> </body> -</html> +</html> \ No newline at end of file |