UNPKG
2048-cli-game
Version:
latest (0.2.2)
0.2.2
0.2.0
0.1.0
0.0.0
2048 game for terminal.
2048-cli-game
/
dist
/
constants.js
10 lines
(9 loc)
•
196 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
export
const
DEFAULT_NUMS = [ [
0
,
0
,
0
,
0
], [
0
,
0
,
0
,
0
], [
0
,
0
,
0
,
0
], [
0
,
0
,
0
,
0
], ];
export
const
GRID_SIZE =
4
;
export
const
INITIAL_TILES =
2
;
export
const
MAX_VALUE =
2048
;