Add Discord RPC back with new features, add beta splitscreen support, PR's from MCLCE used in this https://github.com/MCLCE/MinecraftConsoles/pull/1044 https://github.com/MCLCE/MinecraftConsoles/pull/1136 https://github.com/MCLCE/MinecraftConsoles/pull/1245
23 lines
621 B
C++
23 lines
621 B
C++
#pragma once
|
|
|
|
#include "Packet.h"
|
|
|
|
class SetCreativeModeSlotPacket : public Packet, public enable_shared_from_this<SetCreativeModeSlotPacket>
|
|
{
|
|
public:
|
|
int slotNum;
|
|
shared_ptr<ItemInstance> item;
|
|
|
|
SetCreativeModeSlotPacket();
|
|
SetCreativeModeSlotPacket(int slotNum, shared_ptr<ItemInstance> item);
|
|
|
|
virtual void handle(PacketListener *listener);
|
|
virtual void read(DataInputStream *dis);
|
|
virtual void write(DataOutputStream *dos);
|
|
virtual int getEstimatedSize();
|
|
|
|
|
|
public:
|
|
static shared_ptr<Packet> create() { return std::make_shared<SetCreativeModeSlotPacket>(); }
|
|
virtual int getId() { return 107; }
|
|
}; |