-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (28 loc) · 891 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
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name=viewport content="width=device-width, initial-scale=1">
<title>Stellar</title>
<link rel="stylesheet" href="static/css/style.css">
<script src="static/js/jquery.min.js"></script>
</head>
<body>
<canvas id="main">
Your browser does not support HTML5 Canvas. Dang.
</canvas>
<script src="static/js/utils.js"></script>
<script src="static/js/gameObjects.js"></script>
<script src="static/js/player.js"></script>
<script src="static/js/enemy.js"></script>
<script src="static/js/background.js"></script>
<script src="static/js/board.js"></script>
<script>
window.onload = function() {
ENGINE.GAME.init();
}
</script>
<!-- google analytics tracker module -->
<script src="static/js/analytics.js"></script>
</body>
</html>