-
Notifications
You must be signed in to change notification settings - Fork 1
/
rubber.html
30 lines (24 loc) · 918 Bytes
/
rubber.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
<!doctype html>
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1, maximum-scale=1">
<title>Rubber Rockets</title>
<!-- The solar system game engine -->
<script type="text/javascript" src="src/util.js" ></script>
<script type="text/javascript" src="src/v.js" ></script>
<script type="text/javascript" src="src/wrand.js" ></script>
<script type="text/javascript" src="src/body.js" ></script>
<script type="text/javascript" src="src/solarsystem.js" ></script>
<!-- Allow zooming and panning -->
<script type="text/javascript" src="src/zoom.js" ></script>
<!-- The "rubber rockets" game -->
<script type="text/javascript" src="src/rubber.js" ></script>
</head>
<body style="
margin: 0px;
background: black;
overflow: hidden;
">
</body>
</html>