-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
31 lines (27 loc) · 997 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Pathfinder</title>
<script type="text/javascript" src="src/vendor/phaser.min.js"></script>
<script type="text/javascript" src="src/vendor/jquery-3.1.1.min.js"></script>
<script type="text/javascript" src="src/vendor/lodash.js"></script>
<script type="text/javascript" src="src/Boot.js"></script>
<script type="text/javascript" src="src/Preload.js"></script>
<script type="text/javascript" src="src/Graph.js"></script>
<script type="text/javascript" src="src/BinaryHeap.js"></script>
<script type="text/javascript" src="src/PathFinder.js"></script>
<script type="text/javascript" src="src/Utility.js"></script>
<script type="text/javascript" src="src/Game.js"></script>
<style>
body {
padding: 0px;
margin: 0px;
}
</style>
</head>
<body>
<!-- include the main game file -->
<script src="src/main.js"></script>
</body>
</html>