-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
33 lines (27 loc) · 1.18 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
<!--
~ Copyright (c) 2011-2012 by Animatron.
~ All rights are reserved.
~
~ Animatron player is licensed under the MIT License, see LICENSE.
-->
<!DOCTYPE html>
<html>
<head>
<title>The Animatron HTML5 Player Demo</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" href="./main.css" type="text/css"/>
<script src="http://cdnjs.cloudflare.com/ajax/libs/json2/20110223/json2.js"></script>
<script src="http://raw.github.com/andris9/jStorage/master/jstorage.js"></script>
<script src="../player/vendor/matrix.js" type="text/javascript"></script>
<script src="../player/anm.player.js" type="text/javascript"></script>
<script src="../player/anm.collisions.js" type="text/javascript"></script>
<script src="../player/anm.builder.js" type="text/javascript"></script>
<script src="../player/animatron_import.js" type="text/javascript"></script>
<script src="game.js" type="text/javascript"></script>
</head>
<body onload="start();">
<h1>Chain Reaction – game built on The Animatron engine</h1>
<canvas id="gameCanvas"></canvas>
<div id="copyright"><span>© 2011-2012 by Animatron.</span></div>
</body>
</html>