UNPKG

grid-engine

Version:

Phaser3 plugin for grid based movement on a 2D game board.

13 lines (12 loc) 256 B
export type CharLayer = string | undefined; /** * Specifies a tile position along with a character layer. */ export interface LayerPosition { position: Position; charLayer: CharLayer; } export interface Position { x: number; y: number; }