This is one of the first commits in a plan to remove all `using namespace std;` lines in the entire codebase as it is considered anti-pattern today.
23 lines
647 B
C++
23 lines
647 B
C++
#pragma once
|
|
|
|
#include "Packet.h"
|
|
|
|
class SetCreativeModeSlotPacket : public Packet, public enable_shared_from_this<SetCreativeModeSlotPacket>
|
|
{
|
|
public:
|
|
int slotNum;
|
|
std::shared_ptr<ItemInstance> item;
|
|
|
|
SetCreativeModeSlotPacket();
|
|
SetCreativeModeSlotPacket(int slotNum, std::shared_ptr<ItemInstance> item);
|
|
|
|
virtual void handle(PacketListener *listener);
|
|
virtual void read(DataInputStream *dis);
|
|
virtual void write(DataOutputStream *dos);
|
|
virtual int getEstimatedSize();
|
|
|
|
|
|
public:
|
|
static std::shared_ptr<Packet> create() { return std::shared_ptr<Packet>(new SetCreativeModeSlotPacket()); }
|
|
virtual int getId() { return 107; }
|
|
}; |