|
export const GAME_WIDTH = 1600;
|
|
export const GAME_HEIGHT = 900;
|
|
export const BASE_HEALTH = 100; // starting health
|
|
export const BASE_FIRE_RATE = 2000; // ms between shots
|
|
export const BASE_DAMAGE = 20; // damage per bullet
|
|
export const ASSET_PATH = './assets/';
|