-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
39 lines (33 loc) · 1.13 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="pragma" content="no-cache" />
<title>Minesweeper</title>
<link rel="stylesheet" href="css/main.css" type="text/css" media="screen" />
<script src="js/Event.js"></script>
<script src="js/TruncatedSquareBoardModel.js"></script>
<script src="js/TruncatedSquareBoardView.js"></script>
<script src="js/HexagonBoardModel.js"></script>
<script src="js/HexagonBoardView.js"></script>
<script src="js/BoardModel.js"></script>
<script src="js/BoardView.js"></script>
<script src="js/Board.js"></script>
<script src="js/Game.js"></script>
</head>
<body>
<h1>MineSweeper</h1>
<select id="type">
<option value="classic" selected="selected">Classic</option>
<option value="hexagonal">Hexagonal</option>
<option value="truncated-square">Truncated Square</option>
</select>
<select id="level">
<option value="beginner" selected="selected">Beginner</option>
<option value="intermediate">Intermediate</option>
<option value="expert">Expert</option>
</select>
<button onclick="Game.start();">Start</button>
<!--<button onclick="Game.restart();">Restart</button> -->
<div id="board"></div>
</body>
</html>