-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (21 loc) · 733 Bytes
/
index.html
File metadata and controls
26 lines (21 loc) · 733 Bytes
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
<!DOCTYPE HTML>
<html>
<head>
<title>FlappMeBird</title>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="user-scalable=no">
</head>
<body>
<canvas id="world"></canvas>
<script src="script/animation/animation.js"></script>
<script src="script/animation/player/texture.js"></script>
<script src="script/animation/player/player.js"></script>
<script src="script/class/map.js"></script>
<script src="script/class/object.js"></script>
<script src="script/class/player.js"></script>
<script src="script/system.js"></script>
<script src="script/script.js"></script>
<script src="script/control.js"></script>
</body>
</html>