Create class "Game"

This class can now have multiple instances (currently not at the same time)
This commit is contained in:
Marcel
2018-05-11 12:27:39 +02:00
parent 8373409e13
commit 5b0265c1ab
3 changed files with 535 additions and 512 deletions

View File

@@ -3,8 +3,8 @@
<head>
<meta charset="UTF-8">
<title>Minesweeper.js</title>
<link rel="shortcut icon" type="image/x-icon" href="icons/icon.ico">
<link rel="icon" type="image/png" href="icons/icon.png" sizes="32x32">
<!--<link rel="shortcut icon" type="image/x-icon" href="icons/icon.ico">-->
<!--<link rel="icon" type="image/png" href="icons/icon.png" sizes="32x32">-->
<style>
html {
overflow: hidden;
@@ -75,6 +75,7 @@
<script type="text/javascript" src="animations/click.js"></script>
<script type="text/javascript" src="animations/victory.js"></script>
<script type="text/javascript" src="game.js"></script>
<script type="text/javascript" src="minesweeper.js"></script>
</body>