summaryrefslogtreecommitdiff
path: root/src/state/const.ts
blob: caac8ce7c7e44afab595ce3953f1f67ab2981406 (plain)
1
2
3
4
5
6
7
8
9
10
11
export const GAME_SIZE = {
  rows: 20,
  cols: 20,
};

export const INITIAL_PADDLE_POSITION = 10;

export const PADDLE_WIDTH = 3;
export const PADDLE_HEIGHT = 1;

export const NUM_STARTING_BALLS = 2;