UNPKG

@battle-racing/br-common-lib

Version:

Common library for all Battle Racing Repositorios

15 lines (14 loc) 682 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.GameFinishedReason = void 0; var GameFinishedReason; (function (GameFinishedReason) { /** The time set for the game was over */ GameFinishedReason["TIME_IS_OVER"] = "TIME_IS_OVER"; /** There is a winner on the game */ GameFinishedReason["GAME_KARTS_FINISHED"] = "GAME_KARTS_FINISHED"; /** The game was stopped by an emergency */ GameFinishedReason["EMERGENCY"] = "EMERGENCY"; /** The Controller of the game finished the game */ GameFinishedReason["BY_CONTROLLER"] = "BY_CONTROLLER"; })(GameFinishedReason || (exports.GameFinishedReason = GameFinishedReason = {}));