-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (38 loc) · 1.06 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
<html>
<head>
<title>Piradice - Turn-based strategy game in HTML5</title>
<link rel="stylesheet" href="app/app.css"/>
</head>
<body id="app">
<canvas id="canvas">
</canvas>
<script src="app/seed.js"></script>
<script src="app/entities.js"></script>
<script src="app/items.js"></script>
<script src="app/maps.js"></script>
<script src="app/ai.js"></script>
<script src="app/io.js"></script>
<script src="app/world.js"></script>
<script src="app/render.js"></script>
<script src="app/shop.js"></script>
<script src="app/gui.js"></script>
<script src="app/audio.js"></script>
<script src="app/game.js"></script>
<script>
WebFontConfig = {
google: { families: [ 'VT323::latin' ] },
active: function() {
game.init();
}
};
(function() {
var wf = document.createElement('script');
wf.src = 'font/webfont.js';
wf.type = 'text/javascript';
wf.async = 'true';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(wf, s);
})();
</script>
</body>
</html>