<!DOCTYPE html> <html> <head> <title>Rogue</title> <style> body { margin: 0; overflow: hidden; } canvas { display: block; } </style> </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/camera.js"></script> <script src="js/rogue.js"></script> </body> </html>