-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (32 loc) · 1.09 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>The Game</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div id="loading">
<div id="loading-container">
<span>Loading...</span>
<div id="loading-progress"></div>
</div>
</div>
<script src="js/lib/quintus.js"></script>
<script src="js/lib/quintus_sprites.js"></script>
<script src="js/lib/quintus_scenes.js"></script>
<script src="js/lib/quintus_input.js"></script>
<script src="js/lib/quintus_anim.js"></script>
<script src="js/lib/quintus_2d.js"></script>
<script src="js/lib/quintus_audio.js"></script>
<script src="js/lib/quintus_touch.js"></script>
<script src="js/lib/quintus_ui.js"></script>
<script src="js/game_figures.js"></script>
<script src="js/game_levels.js"></script>
<script src="js/game_sprites.js"></script>
<script src="js/game.js" defer></script>
</body>
</html>