mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-09-28 15:41:13 -04:00
[General] Add dontRead flag
This commit is contained in:
parent
ead92fff61
commit
4daf471874
@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
#define BPP_INIT(packet_id) packetID = packet_id; strPacketID = #packet_id; className = typeid(this).name();
|
#define BPP_INIT(packet_id) packetID = packet_id; strPacketID = #packet_id; className = typeid(this).name(); dontRead = false;
|
||||||
|
|
||||||
class BasePacketProcessor
|
class BasePacketProcessor
|
||||||
{
|
{
|
||||||
@ -30,6 +30,7 @@ protected:
|
|||||||
unsigned char packetID;
|
unsigned char packetID;
|
||||||
std::string strPacketID;
|
std::string strPacketID;
|
||||||
std::string className;
|
std::string className;
|
||||||
|
bool dontRead;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user