-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (35 loc) · 1.62 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
37
38
39
40
41
42
43
44
45
<html lang="en">
<head>
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Little Fellas</title>
</head>
<body>
<script src="lib/phaser.js"></script>
<script src="src/eventsCenter.js"></script>
<script src="src/components/UserComponent.js"></script>
<script src="src/components/PushOnClick.js"></script>
<script src="src/components/PreloadText.js"></script>
<script src="src/scenes/Preload.js"></script>
<script src="src/states/StateTest.js"></script>
<script src="src/states/Idle.js"></script>
<script src="src/states/RandomWalk.js"></script>
<script src="src/states/Dead.js"></script>
<script src="src/states/Dragged.js"></script>
<script src="src/states/Feeding.js"></script>
<script src="src/states/Breeding.js"></script>
<script src="src/states/Sliding.js"></script>
<script src="src/states/Scatter.js"></script>
<script src="src/states/StateController.js"></script>
<script src="src/scenes/Level.js"></script>
<script src="src/scenes/Newgroundsio.js"></script>
<script src="src/scenes/UI.js"></script>
<script src="https://cdn.jsdelivr.net/gh/PsychoGoldfishNG/newgrounds.io-for-javascript-html5@8772ef4/bin/newgroundsio.js"></script>
<script src="src/main.js"></script>
<!-- <script type="module" src="src/main.js"></script> -->
</body>
</html>
<style>html, body { margin: 0px; padding: 0px; height: 100%; } </style>