/** * @module net/packets/incoming */ import { Writer } from '../../writer'; import { Reader } from '../../reader'; import { PacketType } from '../../packet-type'; import { Packet } from '../../packet'; /** * Received when another player shoots a projectile. */ export declare class AllyShootPacket implements Packet { type: PacketType; propagate: boolean; /** * The bullet id of the projectile which was produced. */ bulletId: number; /** * The object id of the player who fired the projectile. */ ownerId: number; /** * The item id of the weapon used to fire the projectile. */ containerType: number; /** * The angle at which the projectile was fired. */ angle: number; read(reader: Reader): void; write(writer: Writer): void; } //# sourceMappingURL=ally-shoot-packet.d.ts.map