@typed-tabletop-simulator/lib
Version:
Library with some helping modules for working with Tabletop Simulator
16 lines (15 loc) • 305 B
TypeScript
/** @noSelfInFile */
import { GameGrid } from "./gameGrid";
export interface AxialCoordinate {
q: number;
r: number;
}
export interface OffsetCoordinate {
q: number;
r: number;
}
export interface Point {
x: number;
y: number;
}
export declare const getCurrentGrid: () => GameGrid;