-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (50 loc) · 2 KB
/
index.html
File metadata and controls
54 lines (50 loc) · 2 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
<!DOCTYPE html>
<html lang="en" manifest="cache.manifest">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta name="application-name" content="Tower Attack"/>
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<link rel="manifest" href="json/manifest.json">
<link rel="icon" sizes="192x192" href="img/icons/icon.png">
<link rel="apple-touch-icon" sizes="192x192" href="img/icons/icon.png">
<link rel="apple-touch-icon-precomposed" sizes="192x192" href="img/icons/icon.png">
<title>TowerAttack</title>
<script src="script/jquery.min.js"></script>
<script src="script/phaser.2_6_2.js"></script>
<script src="script/index.js"></script>
<script src="script/BootState.js"></script>
<script src="script/LoadState.js"></script>
<script src="script/MenuState.js"></script>
<script src="script/LevelState.js"></script>
<script src="script/UIHandler.js"></script>
<script src="script/Unit.js"></script>
<script src="script/Tower.js"></script>
<script src="script/Resource.js"></script>
<script src="script/ResourceHandler.js"></script>
<script src="https://www.gstatic.com/firebasejs/3.7.2/firebase.js"></script>
<script>
// Initialize Firebase
var config = {
apiKey: "AIzaSyDGoNtcuPf7EWmtxp7LlJewComfU64t_k4",
authDomain: "tower-attack-9cd59.firebaseapp.com",
databaseURL: "https://tower-attack-9cd59.firebaseio.com",
storageBucket: "tower-attack-9cd59.appspot.com",
messagingSenderId: "145872139242"
};
firebase.initializeApp(config);
</script>
<style>
body{
margin:0;
padding:0;
width:100%;
height:100%;
}
</style>
</head>
<body>
</body>
</html>