import {Packet} from '@avocado/net'; export class TileUpdatePacket extends Packet { static get schema() { return { ...super.schema, data: { layer: 'uint8', position: 'uint32', tile: 'uint16', }, }; } }