-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·28 lines (27 loc) · 933 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Green Lawn Surfers</title>
<link rel="stylesheet" href="../webgl.css" type="text/css">
</head>
<body>
<canvas id="glcanvas" width="1280" height="720"></canvas>
</body>
<script src="./src/gl-matrix.js"></script>
<script src="./src/barricade.js"></script>
<script src="./src/missile.js"></script>
<script src="./src/fireball.js"></script>
<script src="./src/dog.js"></script>
<script src="./src/police.js"></script>
<script src="./src/wall.js"></script>
<script src="./src/shield.js"></script>
<script src="./src/fly.js"></script>
<script src="./src/jump.js"></script>
<script src="./src/coin.js"></script>
<script src="./src/thorn.js"></script>
<script src="./src/brick.js"></script>
<script src="./src/tile.js"></script>
<script src="./src/player.js"></script>
<script src="./src/main.js"></script>
</html>