-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
33 lines (28 loc) · 994 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!doctype html>
<html>
<head>
<meta charset="UTF-8"/>
<title>Elemental RTS</title>
<link type='text/css' href="css/main.css" rel="stylesheet">
<script src="vendor/phaser.min.js"></script>
<script src="vendor/jquery-3.1.0.min.js"></script>
<script src="js/camera.js"></script>
<script src="js/common.js"></script>
<script src="js/display.js"></script>
<script src="js/input.js"></script>
<script src="js/ui.js"></script>
<script src="js/map.js"></script>
<script src="js/physics.js"></script>
<script src="js/player.js"></script>
<script src="js/units.js"></script>
<script src="js/game.js"></script>
</head>
<body>
<!--<div class="title_bar">-->
<!--<img src="assets/icons/minerals.png" alt="Minerals" class="topIcon">-->
<!--<div id="mineral_count">1200</div>-->
<!--<img src="assets/icons/visored-helm.png" alt="Supply" class="topIcon">-->
<!--<div id="supply_count">10/20</div>-->
<!--</div>-->
</body>
</html>