42 lines
1.2 KiB
HTML
42 lines
1.2 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>LaserTank.js</title>
|
||
|
<link rel="stylesheet" type="text/css" href="style.css" />
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="game">
|
||
|
<canvas id="render" width="512" height="512">
|
||
|
Your web browser does not support the canvas element.
|
||
|
</canvas>
|
||
|
<div class="hud">
|
||
|
|
||
|
</div>
|
||
|
|
||
|
<div class="load">
|
||
|
<fieldset>
|
||
|
<legend>Load LTG and LVL</legend>
|
||
|
<p>This section is temporary and is used during development.</p>
|
||
|
|
||
|
<input type="file" id="ltg" />
|
||
|
<input type="file" id="lvl" />
|
||
|
</fieldset>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<!-- these will be concatenated and minified at some point -->
|
||
|
<script src="scripts/ease.min.js"></script>
|
||
|
<script src="scripts/main.js"></script>
|
||
|
<script src="lib/TileDfn.js"></script>
|
||
|
<script src="lib/ClassicTileDfn.js"></script>
|
||
|
<script src="lib/LtgLoader.js"></script>
|
||
|
<script src="lib/TileMasker.js"></script>
|
||
|
<script src="lib/MapSet.js"></script>
|
||
|
<script src="lib/Map.js"></script>
|
||
|
<script src="lib/ClassicMap.js"></script>
|
||
|
<script src="lib/MapRender.js"></script>
|
||
|
<script src="lib/FileLoader.js"></script>
|
||
|
<script src="scripts/game.js"></script>
|
||
|
</body>
|
||
|
</html>
|