-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (30 loc) · 1.27 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
<!DOCTYPE html>
<html class="no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Ludum Dare 31 : Entire Game on One Screen</title>
<meta name="description" content="">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="viewport" content="user-scalable=0, initial-scale=1, minimum-scale=1, maximum-scale=1, width=device-width, minimal-ui=1">
<link rel="shortcut icon" href="assets/favicon.ico">
<link rel="stylesheet" href="assets/game.css">
</head>
<body>
<main>
<canvas id="gameboard"></canvas>
</main>
<script src="paper/paper-full.js"></script>
<script src="js/background.js"></script>
<script src="js/behavior.js"></script>
<script src="js/business.js"></script>
<script src="js/conglomerate.js"></script>
<script src="js/events.js"></script>
<script src="js/overlay.js"></script>
<script src="js/settings.js"></script>
<script src="js/utils.js"></script>
<script src="js/world.js"></script>
<script src="js/game.js"></script>
</body>
</html>