-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.html
More file actions
42 lines (39 loc) · 1.35 KB
/
Main.html
File metadata and controls
42 lines (39 loc) · 1.35 KB
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
<HTML>
<HEAD>
<TITLE>Escape!..</TITLE>
<SCRIPT type="text/javascript" src="js/Particles.js"></SCRIPT>
<!--SCRIPT type="text/javascript" src="js/Part2.js"></SCRIPT -->
<SCRIPT type="text/javascript" src="js/TileUtils.js"></SCRIPT>
<SCRIPT type="text/javascript" src="js/TileGraphics.js"></SCRIPT>
<SCRIPT type="text/javascript" src="js/ViewPort.js"></SCRIPT>
<SCRIPT type="text/javascript" src="js/Map.js"></SCRIPT>
<SCRIPT type="text/javascript" src="js/TileSprite.js"></SCRIPT>
<SCRIPT type="text/javascript" src="js/Player.js"></SCRIPT>
<SCRIPT type="text/javascript" src="js/SfxData.js"></SCRIPT>
<SCRIPT type="text/javascript" src="js/LevelsData.js"></SCRIPT>
<SCRIPT type="text/javascript" src="js/Main.js"></SCRIPT>
<link rel="stylesheet" href="css/style.css">
</HEAD>
<BODY>
<CENTER>
<DIV id="header">
<H1>LD21: Escape The Dungeon</H1>
</DIV>
<DIV>
<CANVAS id="main_canvas" width="384px" height="384px"
onclick="handleClickRelative(event,this)"
>
<P>Your browser wont do canvas :-( sorry, try google chrome </P>
</CANVAS>
<DIV id="msg">
.
</DIV>
</DIV>
<DIV id="footer">
(c) 2011 Tim Kelsey ( callidus )
</DIV>
</CENTER>
<IMG src="img/dood-walk.png" style="visibility:hidden;"></IMG>
<IMG src="img/map1.png" style="visibility:hidden;"></IMG>
</BODY>
</HTML>