You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
207 B
7 lines
207 B
export const ROW = 1; //0
|
|
export const COL = 2;
|
|
const gameArea = 740;
|
|
export const TILE_SPACING = 10; //8
|
|
export const TILE_SIZE = (gameArea - TILE_SPACING * 5) / 4; //80
|
|
|
|
export const TWEEN_DURATION = 100;
|
|
|