UNPKG

the-world-engine

Version:

three.js based, unity like game engine for browser

11 lines (10 loc) 220 B
import type { Vector2 } from "three/src/Three"; /** * Interface for objects that possitioned in grid */ export interface IGridPositionable { /** * position in grid */ get positionInGrid(): Vector2; }