-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (38 loc) · 1.12 KB
/
index.html
File metadata and controls
40 lines (38 loc) · 1.12 KB
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
35
36
37
38
39
40
<!doctype html>
<html>
<head>
<title>JSBT - Prototype</title>
<script src="scripts/3p/three.min.js"></script>
<script src="scripts/3p/threex.windowresize.js"></script>
<script src="scripts/weapons.js"></script>
<script src="scripts/unitsheet.js"></script>
<script src="scripts/unit.js"></script>
<script src="scripts/hex.js"></script>
<script src="scripts/board.js"></script>
<script src="scripts/boarddata.js"></script>
<script src="scripts/battle.js"></script>
<style>
body {
margin: 0;
width: 100%;
height: 100%;
}
.board {
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<div id='board'></div>
<script src="scripts/ui.js"></script>
<script>
BT.ui = new BT.UI();
function animate() {
window.requestAnimationFrame(animate);
BT.ui.updateUI();
}
animate();
</script>
</body>
</html>