UNPKG
@jonathanbuchner/minesweeper
Version:
latest (0.0.4)
0.0.4
0.0.3
0.0.2
Minesweeper typescript project
github.com/JonathanBuchner/Minesweeper
JonathanBuchner/Minesweeper
@jonathanbuchner/minesweeper
/
dist
/
src
/
models
/
square.js
12 lines
•
303 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
class
Square
{
constructor
(
id
) {
this
.
isMine
=
false
;
this
.
number
=
null
;
this
.
isVisible
=
false
;
this
.
id
= id; } }
exports
.
Square
=
Square
;
//# sourceMappingURL=square.js.map