forked from AdamYee/AlbertMineSweeper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (44 loc) · 1.31 KB
/
index.html
File metadata and controls
47 lines (44 loc) · 1.31 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
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>AlbertMineSweeper Board</title>
<link rel="stylesheet" type="text/css" href="ams_board.css">
<script type="text/javascript" src="/bower_components/jquery/dist/jquery.js"></script>
<script type="text/javascript" src="ui.js" id="USER_INTERFACE"></script>
</head>
<body>
<h1>Albert Mine Sweeper</h1>
<h4>Project Status:</h4>
<ul>
<li>Current: Adjustable GameBoard</li>
<li>Next: User Interface for:
<ol>
<li>Resetting Game</li>
<li>Adjusting Game Settings</li>
</ol>
</li>
<li>Next: No First-Click Deaths</li>
<li>Next: End Conditions (UI Freeze)</li>
<li>Next: Clock</li>
<li>Next: Scoreboard?</li>
<li>Next: Match Graphics to MS Minesweeper?</li>
<li>Complete:
<ul>
<li>Game Logic</li>
<li>GitHub/Sublime Setup</li>
<li>Code Refactoring</li>
<li>Reveal Squares when Clicked</li>
<li>Right-Click Flags</li>
</ul>
</li>
</ul>
<form id="gridSetup">
Rows: <input type="text" name="rows"><br>
Columns: <input type="text" name="cols"><br>
Mines: <input type="text" name="mines"><br><br>
<input type="submit" value="Refresh Game"><br><br><br>
</form>
<div class="base" oncontextmenu="return false;">
<script type="text/javascript" src="AlbertMineSweeper.script.js"></script>
</body>
</html>