UNPKG

@gamepark/rules-api

Version:

API to implement the rules of a board game

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