forked from excaliburjs/excalibird
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (35 loc) · 1.24 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
<html>
<head>
<title>Excalibird</title>
</head>
<body>
<div id="content">
<canvas id="game">
Bummer no canvas support in this browser...
</canvas>
</div>
<!-- Load google web font synchronously-->
<!-- http://www.google.com/fonts#UsePlace:use/Collection:Press+Start+2P -->
<script type="text/javascript">
WebFontConfig = {
google: { families: [ 'Press+Start+2P::latin' ] }
};
(function() {
var wf = document.createElement('script');
wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
'://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
wf.type = 'text/javascript';
wf.async = 'true';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(wf, s);
})(); </script>
<script type="text/javascript" src="excalibur/Excalibur.js"></script>
<script type="text/javascript" src="resource.js"></script>
<script type="text/javascript" src="config.js"></script>
<script type="text/javascript" src="cloud.js"></script>
<script type="text/javascript" src="bird.js"></script>
<script type="text/javascript" src="tower.js"></script>
<script type="text/javascript" src="towerDispatcher.js"></script>
<script type="text/javascript" src="main.js"></script>
</body>
</html>