-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (36 loc) · 1.13 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
<!DOCTYPE HTML>
<html>
<head>
<meta charset='utf-8' />
<title>DeadBeat</title>
<style>
body {
background: black;
}
#game {
width: 1000px;
height: 800px;
margin: 30px auto;
border: 1px solid silver;
padding: 3px;
}
</style>
<script src="libs/melonjs-0.9.4.js"></script>
<script src="libs/gamepad.js"></script>
<script src="game/game.js"></script>
<script src="game/titlescreen.js"></script>
<script src="game/playscreen.js"></script>
<script src="game/player.js"></script>
<script src="game/door.js"></script>
<script src="game/lamp.js"></script>
<script src="game/trigger.js"></script>
<script src="game/beatratehud.js"></script>
<script src="game/hudicon.js"></script>
<script src="game/hearticon.js"></script>
<script src="game/stresslevelicon.js"></script>
<script src="game/resources.js"></script>
</head>
<body>
<div id="game"></div>
</body>
</html>