-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (25 loc) · 710 Bytes
/
index.html
File metadata and controls
27 lines (25 loc) · 710 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<title>GGJ 16</title>
<style>
body { margin: 0; overflow:hidden}
#fps {position:absolute; left:0; top:0;}
</style>
<script src="js/keyCodes.js"></script>
<script src="js/level.json.js"></script>
<script src="js/events.json.js"></script>
<script src="js/arrow.js"></script>
<script src="js/enemy.js"></script>
<script src="js/character.js"></script>
<script src="js/main.js"></script>
</head>
<body>
<canvas id="canvas-wrapper"></canvas>
<div id="fps"></div>
</body>
<script>
var engine = new Engine("canvas-wrapper");
</script>
</html>