-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·28 lines (28 loc) · 960 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
<!DOCTYPE html>
<html>
<head>
<title>AutoQuest v0.3</title>
<meta charset="utf-8">
<script>var exports = {};</script>
<script src="node_modules/fast-simplex-noise/lib/index.js"></script>
<script src="node_modules/lodash/lodash.min.js"></script>
<script src="node_modules/craftyjs/dist/crafty-min.js"></script>
<script src="js/ProgressBar.js"></script>
<script src="js/monsters.js"></script>
<script src="js/items.js"></script>
<script src="js/character.js"></script>
<script src="js/quests.js"></script>
<script src="js/game.js"></script>
<script src="js/components.js"></script>
<script src="js/map.js"></script>
<script src="js/ui.js"></script>
<script src="js/scenes.js"></script>
<link href='http://fonts.googleapis.com/css?family=Noticia+Text' rel='stylesheet'>
<link href="css/style.css" rel="stylesheet"/>
<script>
window.addEventListener('load', Game.start);
</script>
</head>
<body>
</body>
</html>