-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
25 lines (22 loc) · 1.08 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>RTS</title>
<!--
It seems there are some issues including phaser with require on the current version (2.6.2)
We need to add it globally
http://www.html5gamedevs.com/topic/13492-problems-with-requirejs-and-new-v230/ -->
<script src="assets/javascript/lib/phaser.js"></script>
<script src="assets/javascript/lib/phaser-debug.js"></script>
<script src="assets/javascript/lib/phaser-inspector.js"></script>
<script src="assets/javascript/lib/phaser-modal.js"></script>
<script src="assets/javascript/lib/easystar.min.js"></script>
<script src="assets/javascript/lib/phaser_pathfinding-0.2.0.min.js"></script>
<script data-main="assets/javascript/main" src="assets/javascript/lib/require.js"></script>
</head>
<body>
</body>
</html>