-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (36 loc) · 1.5 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
<!DOCTYPE html>
<html>
<head >
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<div id="container">
<div id="gameContainer">
<canvas id="surface" width="800" height="480"></canvas>
<canvas id="debug" width="800" height="480"></canvas>
<div id = "debugContainer">
<input type="checkbox" id="debugToggle">Debug</input>
</div>
</div>
</div>
<script src='scripts/thirdparty/modernizr2.js' type="text/javascript"></script>
<script src="scripts/thirdparty/class.js"></script>
<script src="scripts/thirdparty/Box2dWeb-2.1.a.3.js"></script>
<script src="scripts/thirdparty/PxLoader.js"></script>
<script src="scripts/thirdparty/PxLoaderImage.js"></script>
<script src="scripts/thirdparty/PxLoaderSound.js"></script>
<script src="scripts/namespace.js"></script>
<script src="scripts/assets.js"></script>
<script src="scripts/soundController.js"></script>
<script src="scripts/bitmap.js"></script>
<script src="scripts/Maths.js"></script>
<script src="scripts/box2dUtil.js"></script>
<script src="scripts/dispatcher.js"></script>
<script src="scripts/transform.js"></script>
<script src="scripts/entities.js"></script>
<script src="scripts/game.js"></script>
</body>
</html>