UNPKG

@gamepark/rules-api

Version:

API to implement the rules of a board game

6 lines 243 B
import { RuleMoveType } from './RuleMove'; import { MoveKind } from '../MoveKind'; export function isStartRule(move) { return move.kind === MoveKind.RulesMove && move.type === RuleMoveType.StartRule; } //# sourceMappingURL=StartRule.js.map