/** * @module net/data */ import { Writer } from '../writer'; import { Reader } from '../reader'; import { DataPacket } from '../packet'; export declare class GroundTileData implements DataPacket { /** * The X coordinate of this tile. */ x: number; /** * The Y coordinate of this tile. */ y: number; /** * The tile type of this tile. */ type: number; read(reader: Reader): void; write(writer: Writer): void; } //# sourceMappingURL=ground-tile-data.d.ts.map