-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
24 lines (24 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=0.5, shrink-to-fit=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<title>Telc0</title>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/phaser-ce/2.10.0/phaser.min.js"></script>
<script type="text/javascript" src="src/game.js"></script>
<script type="text/javascript" src="src/telc0.js"></script>
<script type="text/javascript" src="src/gameBoot.js"></script>
<script type="text/javascript" src="src/gamePreload.js"></script>
<script type="text/javascript" src="src/gameMenu.js"></script>
<script type="text/javascript" src="src/gameOver.js"></script>
<script type="text/javascript" src="src/util.js"></script>
<script type="text/javascript" src="src/map.js"></script>
<link rel="shortcut icon" href="assets/images/favicon.ico" />
</head>
<body>
<div id="container" style="width: 100%; height: 100%; position: fixed; top: 0; left: 0;'">
<div id="game"></div>
</div>
</body>
</html>