import I_Obstacles from '../Obstacles/I_Obstacles'; import I_NavigatorTile from '../NavigatorTile/I_NavigatorTile'; import point from '../../interfaces/point'; export default interface I_Grid { readonly obstacles: I_Obstacles; readonly tiles: I_NavigatorTile[]; readonly rows: I_NavigatorTile[][]; getTile({ x, y }: point): I_NavigatorTile | null; getRandomTile(): I_NavigatorTile; getRandomFreeTile(): I_NavigatorTile | null; } //# sourceMappingURL=I_Grid.d.ts.map