-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
60 lines (52 loc) · 2.04 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE HTML>
<html>
<head>
<title>MICROMANCER by RADMARS</title>
<meta charset='utf-8' />
<script type="text/javascript" src="libs/melonJS-1.0.2.js"></script>
<script type="text/javascript" src="libs/debugPanel.js"></script>
<script type="text/javascript" src="src/RadMars.js"></script>
<script type="text/javascript" src="src/Unit.js"></script>
<script type="text/javascript" src="src/GameResources.js"></script>
<script type="text/javascript" src="src/Pickups.js"></script>
<script type="text/javascript" src="src/Particles.js"></script>
<script type="text/javascript" src="src/Screens.js"></script>
<script type="text/javascript" src="src/Baddies.js"></script>
<script type="text/javascript" src="src/Player.js"></script>
<script type="text/javascript" src="src/Bullets.js"></script>
<script type="text/javascript" src="src/LD33.js"></script>
<style type='text/css'>
* { text-align: center }
body {
width: 100%;
height: 100%;
padding: 0;
margin: 0;
background-color:#090107;
color:#ffffb1;
font-family:"Arial", Arial, sans-serif;
}
p {
font-size:14px;
letter-spacing:1px;
line-height:20px;
}
#canvas {
text-align: center;
margin: 0 auto;
width: 1000px;
}
</style>
</head>
<body>
<div id='canvas'>
</div>
<p>Controls: WSAD or arrow keys to move player. E or M to raise minions from the dead. Q or L to recall minions.<br/>
Use left click & drag to select minions. Use right click to move
them around. Destroy all the living to proceed through the gateway.</p>
<pre>
Team RADMARS:<br/>
Spacemars, Adhesion, emarcotte, Brendo, Tokken, steakzzz
</pre>
</body>
</html>