-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (31 loc) · 818 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
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<title>Splinters</title>
<script src="processing-1.4.1.js"></script>
<script src="prototype.js"></script>
</head>
<body>
<table>
<tr>
<td>Player:  </td>
<td><span class="playerx">0</span>,  </td>
<td><span class="playery">0</span></td>
</tr>
<tr class="motion">
<td>Beta, Gamma:  </td>
<td><span class="beta">0</span>,  </td>
<td><span class="gamma">0</span></td>
</tr>
<tr class="collisions">
<td>Possible collisions:  </td>
<td><span class="count">0</span></td>
</tr>
</table>
<canvas id="main-canvas" width="600" height="600" style="border: 1px solid gray;"></canvas>
</body>
<script src="Setup.js"></script>
<script src="Objects.js"></script>
<script src="Levels.js"></script>
<script src="Game.js"></script>
</html>