forked from codeThatThinks/dominion
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
47 lines (41 loc) · 1.6 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html>
<head>
<title>
Dominion
</title>
<link rel="stylesheet" href="assets/style.css" />
<script type="text/javascript" src="scripts/jquery.js"></script>
<!-- game javascript -->
<script type="text/javascript" src="scripts/canvas.js"></script>
<script type="text/javascript" src="scripts/game.js"></script>
<script type="text/javascript" src="scripts/objects.js"></script>
<script type="text/javascript" src="scripts/territory.js"></script>
<script type="text/javascript" src="scripts/graphics/core.js"></script>
<script type="text/javascript" src="scripts/graphics/isometric.js"></script>
<script type="text/javascript" src="scripts/graphics/territory.js"></script>
<script type="text/javascript" src="scripts/input/mouse.js"></script>
<script type="text/javascript" src="scripts/input/keyboard.js"></script>
<script type="text/javascript" src="scripts/ui/core.js"></script>
<script type="text/javascript" src="scripts/ui/mouse.js"></script>
<meta charset="UTF-8" />
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<h1>Dominion</h1>
<canvas id="game" width="960px" height="540px">
<br />
<br />
<b>Oh No!</b><br />
Your browser doesn't support<br />
the awesomeness of HTML5!
</canvas>
<br />
Claim territory, wage war, and become powerful. Still extremely early in development.<br />
<br />
<a href="https://github.com/codeThatThinks/Dominion/wiki">Dominion Wiki</a><br />
<a href="https://github.com/codeThatThinks/Dominion">GitHub Repo</a>
</body>
</html>