From f8c006414aec99c90558587dbe08cf1705ed44f7 Mon Sep 17 00:00:00 2001 From: Maksymilian Jopek Date: Wed, 16 Mar 2022 22:34:43 +0100 Subject: Initial commit w/ v0.0.1 --- src/consts.ts | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/consts.ts (limited to 'src/consts.ts') diff --git a/src/consts.ts b/src/consts.ts new file mode 100644 index 0000000..1798a45 --- /dev/null +++ b/src/consts.ts @@ -0,0 +1,6 @@ +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"; -- cgit v1.3.1