-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
executable file
·52 lines (41 loc) · 1.4 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
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="author" content="Mike Chambers" />
<meta name="keywords" content="" />
<meta name="description" content="" />
<meta name="copyright" content="Mike Chambers" />
<meta name="robots" content="index,follow" />
<title>Sonic Zoom</title>
<link href="index.css" rel="stylesheet" type="text/css">
<link rel="shortcut icon" href="favicon.ico" />
<!-- import the Easel library. Downloaded from: http://easeljs.com/ -->
<script src="lib/easel.js"></script>
<script type='text/javascript'>
var djConfig = {
isDebug: false,
parseOnLoad: true,
baseUrl: './'
};
</script>
<script src="http://ajax.googleapis.com/ajax/libs/dojo/1.5/dojo/dojo.xd.js" type="text/javascript"></script>
<script src="/libs/uow/trace.js"></script>
<script src="/libs/uow.js"></script>
<script src="Ship.js"></script>
<script src="Star.js"></script>
<script src="Coin.js"></script>
<script src="Obstacle.js"></script>
<script src="SonicZoom.js"></script>
<script src="index.js"></script>
</head>
<body onload="">
<div id="content">
<div id="header"> </div>
<div id="canvasWrapper">
<canvas id="worldCanvas" ></canvas>
</div>
<div id="footer"> </div>
</div>
</body>
</html>