import {EntityPacket} from './entity.packet'; export class TraitPositionedPacket extends EntityPacket { static get schema() { const schema = super.schema; schema.data.position = 'uint32'; return schema; } }