-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
62 lines (47 loc) · 1.4 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
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<title>Stars and Crafts</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<style>
body {
background-color: rgb(200,200,200);
margin: 0px;
overflow: hidden;
}
#info {
position: absolute;
top: 0px; width: 100%;
color: #ffffff;
padding: 5px;
font-family:Monospace;
font-size:13px;
font-weight: bold;
text-align:center;
}
a {
color: #ffffff;
}
</style>
<script src="../bower_components/jquery/dist/jquery.min.js"></script>
</head>
<body>
<div id="container"></div>
<div id="info">
<a href="https://github.com/jywarren/starsandcrafts" target="_blank">Stars & Crafts</a>
<span class="key"></span>
<span class="crew"></span>
</div>
<script src="http://webrtc.github.io/adapter/adapter-latest.js"></script>
<script src="../dist/starsandcrafts-server.js"></script>
<script src="../dist/starsandcrafts-scenarios.js"></script>
<script>
var server = new StarsAndCrafts.Server();
SC.Scenarios['asteroids'](server);
SC.Scenarios['eros'](server);
//alien = SC.Scenarios['alien'](server);
station = SC.Scenarios['station'](server);
</script>
</body>
</html>