aboutsummaryrefslogtreecommitdiffstats
path: root/src/consts.ts
blob: 81d8f87efed8ea4a759a2542dffef5940cc2413b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/** Colors of balls */
export const COLORS = ["red", "green", "blue", "orange", "#ff009d", "white", "cyan"];
/** Number of {@linkcode Ball} generated each turn */
export const START_NO_OF_BALLS = 3;
/** Height of map */
export const MAP_HEIGHT = 9;
/** Width of map */
export const MAP_WIDTH = 9;
/** Size of html td element */
export const TD_SIZE = "50px";
/** Size of div that renders like a ball */
export const CIRCLE_SIZE = "35px";
/** How many {@linkcode Ball} there have to be in row to delete it */
export const DELETE_FROM_BALLS = 5;