@gamepark/rules-api
Version:
API to implement the rules of a board game
11 lines • 434 B
JavaScript
/**
* The different kind of moves that exists in a game implemented with {@link MaterialRules}.
*/
export var MoveKind;
(function (MoveKind) {
MoveKind[MoveKind["ItemMove"] = 1] = "ItemMove";
MoveKind[MoveKind["RulesMove"] = 2] = "RulesMove";
MoveKind[MoveKind["CustomMove"] = 3] = "CustomMove";
MoveKind[MoveKind["LocalMove"] = 4] = "LocalMove";
})(MoveKind || (MoveKind = {}));
//# sourceMappingURL=MoveKind.js.map