UNPKG

backgammon

Version:

a clean api for building a backgammon game

9 lines (8 loc) 209 B
import { Point } from "./Point"; import { SingleDice } from "./Dice"; export interface SingleMove { from: Point; to: Point; uses: SingleDice; } export declare type MovePath = SingleMove[];