UNPKG

@gamepark/rules-api

Version:

API to implement the rules of a board game

14 lines 550 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.MoveKind = void 0; /** * The different kind of moves that exists in a game implemented with {@link MaterialRules}. */ 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 || (exports.MoveKind = MoveKind = {})); //# sourceMappingURL=MoveKind.js.map