pixi-fusion
Version:
This module offers a set of common components needed for playing games.
9 lines (8 loc) • 368 B
JavaScript
export var GameStatus;
(function (GameStatus) {
GameStatus[GameStatus["READY"] = 0] = "READY";
GameStatus[GameStatus["IN_PROGRESS"] = 1] = "IN_PROGRESS";
GameStatus[GameStatus["TIMEDOUT"] = 2] = "TIMEDOUT";
GameStatus[GameStatus["COMPLETED"] = 3] = "COMPLETED";
GameStatus[GameStatus["PAUSED"] = 4] = "PAUSED";
})(GameStatus || (GameStatus = {}));