-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (27 loc) · 1010 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
31
32
33
34
35
36
37
38
39
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>GX Javascript Engine</title>
<script type="text/javascript" src="core/GXcollision.js"></script>
<script type="text/javascript" src="core/GXinput.js"></script>
<script type="text/javascript" src="core/GXgraphics.js"></script>
<script type="text/javascript" src="scripts/spriteMap.js"></script>
<link rel="stylesheet" type="text/css" href="style/style.css" />
</head>
<body>
Loading -- Please Wait.
<div id="main"></div>
<div id="debug" style="width:1300px"></div>
<script type="text/javascript">
var runGame = function(){
setTimeout('window.location = "map1.html"', 2000);
}
graphics.register(new Array( sMap2, sMap3, sMap), function(){runGame()});
//while(graphics.isReady() == 0){
//Do nothing.
// alert("0");
//}
</script>
</body>
</html>