UNPKG

2048-cli-game

Version:

2048 game for terminal.

10 lines (9 loc) 196 B
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;