forked from MalphasWats/glixl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (26 loc) · 857 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
<!DOCTYPE html>
<html>
<head>
<title>Antipath Client</title>
<style type="text/css">
body {background: black; color:white;}
canvas
{
background: white;
margin: 0px auto;
display:block;
}
</style>
</head>
<body>
<canvas width="416" height="448" id="canvas"></canvas>
<p>Controls: A/D to walk left/right, W to jump. | <span id="fps"></span> fps. </p>
<script type="text/javascript" src="util.js"></script>
<script type="text/javascript" src="glixl.Game.class.js"></script>
<script type="text/javascript" src="glixl.Scene.class.js"></script>
<script type="text/javascript" src="glixl.Sprite.class.js"></script>
<script type="text/javascript" src="glixl.SpriteSheet.class.js"></script>
<script type="text/javascript" src="glixl.Tile.class.js"></script>
<script type="text/javascript" src="antipath.js"></script>
</body>
</html>