/** * @module net/packets/incoming */ import { Writer } from '../../writer'; import { Reader } from '../../reader'; import { PacketType } from '../../packet-type'; import { Packet } from '../../packet'; import { WorldPosData } from '../../data/world-pos-data'; /** * Received to tell the player to display an effect such as an AOE grenade. */ export declare class ShowEffectPacket implements Packet { type: PacketType; propagate: boolean; /** * The type of effect to display. */ effectType: number; /** * > Unknown. Probably the start position of the effect. */ targetObjectId: number; /** * > Unknown. Probably the end position of the effect. */ pos1: WorldPosData; /** * > Unknown. */ pos2: WorldPosData; /** * The color of the effect. */ color: number; /** * The duration of the effect. */ duration: number; read(reader: Reader): void; write(writer: Writer): void; } //# sourceMappingURL=show-effect-packet.d.ts.map