blob: f97cbd168fda68c423557ca550b9eb677e7740e2 (
plain) (
blame)
1
2
3
4
5
6
7
|
export const COLORS = ["red", "green", "blue", "orange", "pink", "white", "cyan"];
export const START_NO_OF_BALLS = 3;
export const MAP_HEIGHT = 9;
export const MAP_WIDTH = 9;
export const TD_SIZE = "50px";
export const CIRCLE_SIZE = "35px";
export const DELETE_FROM_BALLS = 3;
|