@battle-racing/br-common-lib
Version:
Common library for all Battle Racing Repositorios
23 lines (22 loc) • 718 B
TypeScript
export declare const GAME_TYPE: {
readonly Race: "Race";
readonly Battle: "Battle";
};
export declare const GAME_STATUS: {
readonly NON_STARTED: "non-started";
readonly ACTIVE: "active";
readonly YELLOW_FLAG: "yellow-flag";
readonly RED_FLAG: "red-flag";
readonly FINISHED: "finished";
readonly KART_ELIMINATED: "kart-eliminated";
};
export declare const GAME_FINISHED_REASON: {
readonly TIME_IS_OVER: "TIME_IS_OVER";
readonly GAME_KARTS_FINISHED: "GAME_KARTS_FINISHED";
readonly EMERGENCY: "EMERGENCY";
readonly BY_CONTROLLER: "BY_CONTROLLER";
};
export declare const GAME_WARNING_EVENT: {
readonly YELLOW_FLAG: "yellow-flag";
readonly RED_FLAG: "red-flag";
};