@runox-game/game-engine
Version:
RunoX game engine
9 lines (8 loc) • 385 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.GameDirection = void 0;
var GameDirection;
(function (GameDirection) {
GameDirection[GameDirection["CLOCKWISE"] = 0] = "CLOCKWISE";
GameDirection[GameDirection["COUNTER_CLOCKWISE"] = 1] = "COUNTER_CLOCKWISE";
})(GameDirection = exports.GameDirection || (exports.GameDirection = {}));