/** * @module net/packets/incoming */ import { Writer } from '../../writer'; import { Reader } from '../../reader'; import { PacketType } from '../../packet-type'; import { Packet } from '../../packet'; /** * Received in response to the `HelloPacket`. */ export declare class MapInfoPacket implements Packet { type: PacketType; propagate: boolean; /** * The width of the map. */ width: number; /** * The height of the map. */ height: number; /** * The name of the map. */ name: string; /** * > Unknown. */ displayName: string; /** * The difficulty rating of the map. */ difficulty: number; /** * The seed value for the client's PRNG. */ fp: number; /** * > Unkown. */ background: number; /** * Whether or not players can teleport in the map. */ allowPlayerTeleport: boolean; /** * > Unkown. */ showDisplays: boolean; /** * > Unkown. */ clientXML: string[]; /** * > Unkown. */ extraXML: string[]; constructor(); read(reader: Reader): void; write(writer: Writer): void; } //# sourceMappingURL=mapinfo-packet.d.ts.map