4jcraft/Minecraft.World/Network/Packets/AddGlobalEntityPacket.h

25 lines
621 B
C++

#pragma once
#include "Packet.h"
class AddGlobalEntityPacket : public Packet, public std::enable_shared_from_this<AddGlobalEntityPacket>
{
public:
static const int LIGHTNING;
int id;
int x, y, z;
int type;
AddGlobalEntityPacket();
AddGlobalEntityPacket(std::shared_ptr<Entity> e);
virtual void read(DataInputStream *dis);
virtual void write(DataOutputStream *dos);
virtual void handle(PacketListener *listener);
virtual int getEstimatedSize();
public:
static std::shared_ptr<Packet> create() { return std::shared_ptr<Packet>(new AddGlobalEntityPacket()); }
virtual int getId() { return 71; }
};