-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcredits.html
55 lines (51 loc) · 2.37 KB
/
credits.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
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html>
<head>
<title>Minesweeper: credits</title>
<link rel="stylesheet" href="style.css">
<ul>
<li><a href="index.html">Home</a></li>
<li><a class="selected" href="#credits">Credits</a></li>
<li><a href="faq.html">FAQ</a></li>
<li><a href="downloading.html">Download</a></li>
</ul>
</head>
<body>
<a id="credits">
<h1>
Credits
</h1>
<p>This game was made by <strong>Vincent Wang</strong> and <strong>Thomas Zhang</strong></p>
<h2>Vincent Wang's Contributions</h2>
<p>Created the makeStates() code for randomly inserting bombs in tiles</p>
<p>Created the click() function for checking if the mouse has clicked a tile</p>
<p>Created the display() function based off of the slowDisplay(), with added graphics</p>
<p>Created the cheatDraw() function for debugging</p>
<p>Created code to create and add information into BRC monitors</p>
<p>Created Personal High Score Code</p>
<P>Made the checkNewRecord() method and reveal() method</P>
<p>Helped with the draw() function</p>
<p>Created the top nav bar</p>
<p>Helped create downloading.html, and added pictures</p>
<p>Helped with credits.html and index.html</p>
<h2>Thomas Zhang's Contributions</h2>
<p>Created the tile class, instance variables</p>
<p>Created the flagged() and displayed() methods</p>
<p>Created the simple display (slowDisplay()) method</p>
<p>Created the won() method</p>
<p>Created the bombExplodeOutward() method, which turns all of the tiles into explosions when you lose</p>
<p>Made the BRC commands and BRC template, and added code to detect difficulty and mineType</p>
<p>Created leaderboard files and helped with leaderboard code</p>
<p>Created the checkBombs() method, which checks all nearby tiles for bombs</p>
<p>Created the keyPressed() and keyReleased() methods</p>
<p>Helped with the draw() function</p>
<p>Created style.css</p>
<p>Created the faq.html</p>
<p>Helped with the index.html and credits.html</p>
<p>
Special thanks to our beta testers: <strong>Kevin Huang and Kelvin Zhao</strong> for finding many gamebreaking bugs
and making other suggestions to help us bring you this game.
</p>
</a>
</body>
</html>