summaryrefslogtreecommitdiffstats
path: root/source/packets/cPacket_CollectItem.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--source/packets/cPacket_CollectItem.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/source/packets/cPacket_CollectItem.h b/source/packets/cPacket_CollectItem.h
new file mode 100644
index 000000000..5f11500b5
--- /dev/null
+++ b/source/packets/cPacket_CollectItem.h
@@ -0,0 +1,20 @@
+#pragma once
+
+#include "cPacket.h"
+#include "PacketID.h"
+
+class cPacket_CollectItem : public cPacket
+{
+public:
+ cPacket_CollectItem()
+ : m_CollectedID( 0 )
+ , m_CollectorID( 0 )
+ { m_PacketID = E_COLLECT_ITEM; }
+ virtual cPacket* Clone() const { return new cPacket_CollectItem(*this); }
+
+ bool Send( cSocket & a_Socket );
+
+ int m_CollectedID;
+ int m_CollectorID;
+ static const unsigned int c_Size = 1 + 4 + 4;
+}; \ No newline at end of file