-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (38 loc) · 1.35 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
42
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<title></title>
<style type="text/css">
body {
background: black;
color: gray;
font-family: monospace;
}
canvas {
border: 1px solid white;
margin: 50px auto;
display: block;
background: #b2dcef;
}
</style>
</head>
<body>
<canvas width="640" height="480"></canvas>
<script src="lib/jaws/jaws.js"></script>
<script src="lib/jaws/extras/audio.js"></script>
<!-- <script src="lib/jaws/extras/parallax.js"></script> -->
<script src="lib/jaws/extras/pixel_map.js"></script>
<!-- <script src="lib/jaws/extras/quadtree.js"></script> -->
<!-- <script src="lib/jaws/extras/sprite_list.js"></script> -->
<script src="lib/jaws/extras/tile_map.js"></script>
<script src="lib/Font.js"></script>
<script src="lib/afile.js"></script>
<!-- <script src="lib/bitmap_font.js"></script> -->
<script src="lib/inherits.js"></script>
<script src="lib/pixel_collision.js"></script>
<script src="lib/scale.js"></script>
<!-- <script src="lib/tiled.js"></script> -->
<script src="game.js"></script>
</body>
</html>