-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
19 lines (19 loc) · 830 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html>
<body>
<div id="game"></div>
<span id="info" onclick="document.getElementsByTagName('section')[0].style.display='block'">INFO</span>
<section onclick="document.getElementsByTagName('section')[0].style.display='none'">
<span id="ins">Tap <b>+</b> to add guard or extend the current guard's movement.<br>Click the ninja to start game.</span>
</section>
<section onclick="document.getElementsByTagName('section')[1].style.display='none'">
<span id="nopath">No path available.</span>
</section>
<script src="Variables.js"></script>
<script src="GenerateMap.js"></script>
<script src="priority-queue.js"></script>
<script src="Engine.js"></script>
<script src="index.js"></script>
<link href="style.css" rel="stylesheet" type="text/css" />
</body>
</html>