-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (28 loc) · 954 Bytes
/
Copy pathindex.html
File metadata and controls
28 lines (28 loc) · 954 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
28
<!DOCTYPE html>
<html>
<head>
<title>Game</title>
<link href="css/game.css" rel="stylesheet" type="text/css" />
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script src="lib/Box2dWeb-2.1.a.3.min.js"></script>
<script src="lib/createjs-2013.05.14.min.js"></script>
<script src="src/box2dutils.js"></script>
<script src="src/playerBody.js"></script>
<script src="src/shapeActor.js"></script>
<script src="src/actor.js"></script>
<script src="src/player.js"></script>
<script src="src/start.js"></script>
</head>
<body>
<div id="appEngine">
<canvas id="canvas" oncontextmenu="return false;"></canvas>
<canvas id="debugCanvas"></canvas>
<div id="debug" class="button">Show/Hide Debug</div>
<div id="info">A: Attack<br/>
Left: move left<br/>
Right: move right<br/>
Up: jump<br/>
</div>
</div>
</body>
</html>