UNPKG

hex-game

Version:
7 lines (6 loc) 162 B
import { iStone } from './stone'; export interface iBoard { size: number; readonly positions: iStone[]; isFreePosition: (stone: iStone) => boolean; }