-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (31 loc) · 1.12 KB
/
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Space Penguin</title>
<!-- Favicon -->
<link rel="shortcut icon" href="favicon.png">
<script type="text/javascript">
// Scroll to bottom of page
window.onload = function() {
window.scrollTo(0, document.body.scrollHeight);
}
</script>
</head>
<body style="overflow: hidden;" id="main">
<!-- Phaser -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/phaser.min.js"></script>
<!-- Scenes -->
<!-- Space -->
<script src="main/space/SpaceScene.js" charset="utf-8"></script>
<script src="main/space/preload.js" charset="utf-8"></script>
<script src="main/space/create.js" charset="utf-8"></script>
<script src="main/space/update.js" charset="utf-8"></script>
<!-- Config -->
<script src="config.js" charset="utf-8"></script>
<!-- Main script -->
<script src="script.js" charset="utf-8"></script>
<script src="main/space/addBullet.js" charset="utf-8"></script>
<script src="main/space/addPencoin.js" charset="utf-8"></script>
</body>
</html>