4jcraft/targets/minecraft/network/packet/AddGlobalEntityPacket.h
2026-04-01 13:27:58 -05:00

33 lines
738 B
C++

#pragma once
#include <memory>
#include "Packet.h"
#include "minecraft/network/packet/Packet.h"
class Entity;
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::make_shared<AddGlobalEntityPacket>();
}
virtual int getId() { return 71; }
};