-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (38 loc) · 828 Bytes
/
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
<html>
<head>
<title>Game Demo</title>
</head>
<body onload="preloader()">
<canvas
id="gameCanvas"
style="border:1px solid #000000; margin: auto; padding: 0; display: block;">
Your browser does not support the canvas element.
</canvas>
<p align="center">Created by Phillip McIntyre, 2015</p>
<p align="center">Music: Copyright Square Enix - Kingdom Hearts II, Final Fantasy X</p>
<script
type="text/javascript"
src="constants.js">
</script>
<script
type="text/javascript"
src="parallax.js">
</script>
<script
type="text/javascript"
src="enemyChar.js">
</script>
<script
type="text/javascript"
src="spawn.js">
</script>
<script
type="text/javascript"
src="playerChar.js">
</script>
<script
type="text/javascript"
src="main.js">
</script>
</body>
</html>