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