summaryrefslogtreecommitdiffstats
path: root/source/packets/cPacket_WindowClose.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--source/packets/cPacket_WindowClose.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/source/packets/cPacket_WindowClose.h b/source/packets/cPacket_WindowClose.h
deleted file mode 100644
index 0851fa20d..000000000
--- a/source/packets/cPacket_WindowClose.h
+++ /dev/null
@@ -1,28 +0,0 @@
-
-#pragma once
-
-#include "cPacket.h"
-
-
-
-
-
-class cPacket_WindowClose : public cPacket
-{
-public:
- cPacket_WindowClose()
- : m_WindowID( 0 )
- {
- m_PacketID = E_WINDOW_CLOSE;
- }
-
- virtual cPacket* Clone() const { return new cPacket_WindowClose(*this); }
-
- virtual int Parse(cByteBuffer & a_Buffer) override;
-
- char m_WindowID;
-};
-
-
-
-