-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (28 loc) · 921 Bytes
/
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
<html>
<head>
<title>Traveler</title>
<script src="javascript/pixi.dev.js"></script>
<script src="javascript/hillFilter.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<style>
html, body {
padding: 0;
margin: 0;
touch-action: manipulation;
}
canvas {
max-width: 100vw;
}
</style>
</head>
<body>
<script src="hillData.js"></script>
<script src="javascript/inputManager.js"></script>
<script src="javascript/bird.js"></script>
<script src="javascript/hill.js"></script>
<script src="javascript/utils.js"></script>
<script src="javascript/ui.js"></script>
<script src="javascript/main.js"></script>
<script src="javascript/game.js"></script>
</body>
</html>