bp-space-invaders
Version:
The BP Space Invaders Game
11 lines (10 loc) • 350 B
TypeScript
export declare const COLS = 31;
export declare const ROWS = 31;
export declare const BLOCK_SIZE = 25;
export declare const COLORS: string[];
export declare class KEY {
static readonly DOWN = "ArrowDown";
static readonly LEFT = "ArrowLeft";
static readonly RIGHT = "ArrowRight";
}
export declare const DESTRUCTION_ANIMATION: number[][][];