UNPKG

@gamepark/rules-api

Version:

API to implement the rules of a board game

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