UNPKG

@gamepark/rules-api

Version:

API to implement the rules of a board game

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