-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
29 lines (29 loc) · 886 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
<!doctype html>
<html>
<head>
<title>Rogue Starfarer: 7DRL</title>
<script src="lodash.js"></script>
<script src="rot.js"></script>
<script src="const.js"></script>
<script src="utils.js"></script>
<script src="control.js"></script>
<script src="weapon.js"></script>
<script src="ship.js"></script>
<script src="events.js"></script>
<script src="delivery.js"></script>
<script src="artifact.js"></script>
<script src="shop.js"></script>
<script src="planet.js"></script>
<script src="system.js"></script>
<script src="universe.js"></script>
<script src="map.js"></script>
<style>
body {background-color:black}
h1 {color:blue}
p {color:green}
</style>
</head>
<body onload="init()">
<div id="stuffOnTop" style="position: absolute; left: 200px; top: 150px; z-index:1000;"></div>
</body>
</html>