forked from luccascm/zac-esquilo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (61 loc) · 2.82 KB
/
Copy pathindex.html
File metadata and controls
74 lines (61 loc) · 2.82 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<doctype html>
<html>
<head>
<title>Zac - O esquilo perdido</title>
<meta charset="utf-8">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="viewport" content="minimal-ui">
<!-- Include fonts -->
<script>
// The Google WebFont Loader will look for this object, so create it before loading the script.
WebFontConfig = {
// 'active' means all requested fonts have finished loading
// We set a 1 second delay before calling 'createText'.
// For some reason if we don't the browser cannot render the text the first time it's created.
// active: function() { game.time.events.add(Phaser.Timer.SECOND, createText, this); },
// The Google Fonts we want to load (specify as many as you like in the array)
google: {
families: ['Revalia', 'Rokkitt', 'Noticia Text', 'Sigmar One', 'Bubblegum Sans']
}
};
</script>
<!-- include phaser library -->
<script src="js/library/phaser.js"></script>
<!-- include the game states -->
<script src="js/game/states/Boot.js"></script>
<script src="js/game/managers/OneSwitchManager.js"></script>
<script src="js/game/helpers/Entity.js"></script>
<script src="js/game/helpers/Player.js"></script>
<script src="js/game/helpers/Enemy.js"></script>
<script src="js/game/helpers/Friend.js"></script>
<script src="js/game/states/Preload.js"></script>
<script src="js/game/states/PreMenu.js"></script>
<script src="js/game/states/MainMenu.js"></script>
<script src="js/game/states/ConfigOptions.js"></script>
<script src="js/game/states/Instructions.js"></script>
<script src="js/game/states/PlayGame.js"></script>
<script src="js/game/states/GameOver.js"></script>
<script src="js/game/states/Credits.js"></script>
<script src="js/game/states/SpeedOptions.js"></script>
<script src="js/game/states/SoundOptions.js"></script>
<script src="js/game/states/GameModeOptions.js"></script>
<!-- include our prefabs -->
<script src="js/game/prefabs/modal.js"></script>
<script src="js/game/prefabs/scoreboard2.js"></script>
<style>
body{ padding: 0px; margin: 0px; }
</style>
</head>
<body>
<!-- include main game file -->
<script src="js/game/main.js"></script>
<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-70034201-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>