-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (29 loc) · 974 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
38
39
40
41
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<!-- no caching!! -->
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="-1">
<meta http-equiv="CACHE-CONTROL" content="NO-CACHE">
<title>Street Dinosaur Freak</title>
<link rel="stylesheet" type="text/css" href="starena.css" />
<script type="text/javascript" src="lib/Box2dWeb-2.1.a.3.min.js"></script>
<script type="text/javascript" src="lib/jsonStringify.js"></script>
<script type="text/javascript" src="lib/seedrandom.js"></script>
<script type="text/javascript" data-main="scripts/main" src="scripts/require.js"></script>
<script type="text/javascript">
require.config({
baseUrl: "scripts",
paths: {
"data": "../data"
}
});
</script>
</head>
<body>
<h1>Street Dinosaur Freak</h1>
<div id="fps"></div>
<div id="main"></div>
<div id="log"></div>
</body>
</html>