UNPKG

@gamepark/rules-api

Version:

API to implement the rules of a board game

10 lines (9 loc) 209 B
/** * The different kind of moves that exists in a game implemented with {@link MaterialRules}. */ export declare enum MoveKind { ItemMove = 1, RulesMove = 2, CustomMove = 3, LocalMove = 4 }