UNPKG

phaser3-rex-plugins

Version:
20 lines (11 loc) 458 B
import ComponentBase from '../../utils/componentbase/ComponentBase'; import Board from '../board/LogicBoard'; export default ChessData; declare class ChessData extends ComponentBase { readonly $uid: number; readonly board: Board; readonly tileXYZ: { x: number, y: number, z: number }; setTileZ(tileZ: number): this; getTileDirection(tileX: number, tileY: number): this; setBlocker(value?: boolean): this; }