about summary refs log blame commit diff stats
path: root/html/rogue/index.html
blob: ef378853912ab59ce4291d07e5168b5c0c77053b (plain) (tree)
1
2
3
4
5
6
7
               
      
      

                        
              
                      








                                     

                                                             

                                          





                                        
<!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>