-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (35 loc) · 1.42 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
<!DOCTYPE html>
<html>
<head>
<title>Spell Casting Fun</title>
<script type="text/javascript" src="lib/jquery-1.9.1.min.js"></script>
<script type="text/javascript" src="lib/crafty.js"></script>
<script type="text/javascript" src="src/interpreter.js"></script>
<script type="text/javascript" src="src/game.js"></script>
<script type="text/javascript" src="src/interface.js"></script>
<script type="text/javascript" src="src/scenes.js"></script>
<script type="text/javascript" src="src/generalcomponents.js"></script>
<script type="text/javascript" src="src/playercomponents.js"></script>
<script type="text/javascript" src="src/spellcomponents.js"></script>
<script type="text/javascript" src="src/spells.js"></script>
<script>
window.addEventListener('load', Interface.init);
</script>
<link rel="stylesheet" type="text/css" href="style/style.css">
</head>
<body>
<div id="fun">
<div id="cr-stage"></div>
<div id="spellBook">
<div id="pageText">
<input id="name" type="text">
<input id="contents" type="text">
</div>
<div id="bottom">
<button type="button" id="prev"><</button>
<button type="button" id="next">></button>
</div>
</div>
</div>
</body>
</html>