-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (25 loc) · 1.27 KB
/
Copy pathindex.html
File metadata and controls
27 lines (25 loc) · 1.27 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Tower Defence Visualiser</title>
<link rel="stylesheet" href="src/styles.css">
</head>
<body>
<form class="navigationContainer">
<input id="loadFileXml" type="button" value="Load Match" onclick="this.form.reset(); document.getElementById('fileInput').click();" />
<input id="fileInput" type="file" webkitdirectory style="display:none;"/>
<input id="previousRoundButton" type="button" value="< Previous Round" disabled/>
<input id="nextRoundButton" type="button" value="Next Round >" disabled/>
</form>
<script type="text/javascript" src="https://d3js.org/d3.v5.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/d3-tip/0.9.1/d3-tip.js"></script>
<script type="text/javascript" src="src/settings.js"></script>
<script type="text/javascript" src="src/matchloader.js"></script>
<script type="text/javascript" src="src/gamemap.js"></script>
<script type="text/javascript" src="src/building.js"></script>
<script type="text/javascript" src="src/missile.js"></script>
<script type="text/javascript" src="src/legend.js"></script>
<script type="text/javascript" src="src/main.js"></script>
</body>
</html>