diff options
Diffstat (limited to 'source/packets/cPacket_WholeInventory.h')
-rw-r--r-- | source/packets/cPacket_WholeInventory.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source/packets/cPacket_WholeInventory.h b/source/packets/cPacket_WholeInventory.h index a2e76658e..766342cd2 100644 --- a/source/packets/cPacket_WholeInventory.h +++ b/source/packets/cPacket_WholeInventory.h @@ -2,6 +2,7 @@ #include "cPacket.h"
#include "PacketID.h"
+#include "BlockID.h"
class cInventory;
class cWindow;
@@ -18,6 +19,8 @@ public: , m_Count( 0 )
, m_Items( 0 )
{ m_PacketID = E_INVENTORY_WHOLE; }
+
+
virtual cPacket* Clone() const { return new cPacket_WholeInventory(*this); }
bool Send(cSocket & a_Socket);
|