-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (32 loc) · 1.17 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
34
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>TP Babylon</title>
<link rel="stylesheet" type="text/css" href="./style/main.css">
<script src="./lib/Oimo.js"></script>
<script src="./lib/Babylon.js"></script>
<script src="./script/Tool.js"></script>
<script src="./script/Key.js"></script>
<script src="./script/ObstacleGenerator.js"></script>
<script src="./script/Meteor.js"></script>
<script src="./script/Camera.js"></script>
<script src="./script/Player.js"></script>
<script src="./script/Ground.js"></script>
<script src="./script/Bullet.js"></script>
<script src="./script/placeholder.js"></script>
<script src="./script/GameManager.js"></script>
<script src="./script/main.js"></script>
</head>
<body>
<canvas id="renderCanvas"></canvas>
<div id="overlay">
<div id="hudRight"><div id="score"></div><div id="best_score"></div></div>
<div id="hudLeft"><div id="ammo"></div></div>
</div>
<div id="menu">
<div id="best_score"></div>
<div class="menu_button" id="play_button">PLAY</div>
</div>
</body>
</html>