diff options
author | Kai Stevenson <kai@kaistevenson.com> | 2025-06-29 15:56:06 -0700 |
---|---|---|
committer | Kai Stevenson <kai@kaistevenson.com> | 2025-06-29 16:36:20 -0700 |
commit | 3df0abc4b0a374c57845e96339bf5a46d8189364 (patch) | |
tree | e11dcea578948fbd134de93149f5576ab7ff2c8c /src/state/const.ts | |
parent | ffcdb8b126c5267040ddc8f0304b153fa88755e5 (diff) |
Diffstat (limited to 'src/state/const.ts')
-rw-r--r-- | src/state/const.ts | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/state/const.ts b/src/state/const.ts index caac8ce..380eb99 100644 --- a/src/state/const.ts +++ b/src/state/const.ts @@ -8,4 +8,7 @@ export const INITIAL_PADDLE_POSITION = 10; export const PADDLE_WIDTH = 3; export const PADDLE_HEIGHT = 1; -export const NUM_STARTING_BALLS = 2; +export const NUM_STARTING_BALLS = 1; + +export const NUM_BRICKS = GAME_SIZE.cols * 5; +export const BRICK_DISTRIBUTION = 0.9; |