UNPKG

@battle-racing/br-common-lib

Version:

Common library for all Battle Racing Repositorios

10 lines (9 loc) 294 B
export declare const gameStatus: readonly ["non-started", "active", "yellow-flag", "red-flag", "finished"]; export type GameStatus = (typeof gameStatus)[number]; export declare enum GameStatusEnum { NON_STARTED = 0, ACTIVE = 1, YELLOW_FLAG = 2, RED_FLAG = 3, FINISHED = 4 }