-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (41 loc) · 1.83 KB
/
index.html
File metadata and controls
50 lines (41 loc) · 1.83 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html class="no-js">
<head>
<meta charset="utf-8">
<title>LD29</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div style="width:100%">
<div id="gamediv" style="width:800px;margin:auto"><span id="loaderMessage" style="position:absolute; width:800px;height:600px;color:white;font-size:50px;text-align:center">Loading ...</span></div>
</div>
<div id="stats"></div>
<script src="//cdnjs.cloudflare.com/ajax/libs/phaser/2.0.3/phaser.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/moment.js/2.6.0/moment.min.js"></script>
<!-- <script src="scripts/vendor/phaser.js"></script> -->
<script src="scripts/vendor/fpsmeter.min.js"></script>
<script src="scripts/random.js"></script>
<script src="scripts/main.js"></script>
<script src="scripts/level.js"></script>
<script src="scripts/player.js"></script>
<script src="scripts/mobsService.js"></script>
<script src="scripts/lootService.js"></script>
<script src="scripts/textService.js"></script>
<script src="scripts/stats.js"></script>
<script src="scripts/story.js"></script>
<script src="scripts/states/menu.js"></script>
<script src="scripts/states/game.js"></script>
<script src="scripts/states/gameover.js"></script>
<script src="scripts/filters/Fire.js"></script>
<!-- Google analytics -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-50441515-1', 'chradr.com');
ga('send', 'pageview');
</script>
</body>
</html>