mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-09-27 06:55:54 -04:00
[General] Add dontRead flag
This commit is contained in:
parent
ead92fff61
commit
4daf471874
@ -7,7 +7,7 @@
|
||||
|
||||
#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
|
||||
{
|
||||
@ -30,6 +30,7 @@ protected:
|
||||
unsigned char packetID;
|
||||
std::string strPacketID;
|
||||
std::string className;
|
||||
bool dontRead;
|
||||
};
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user