mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 20:19:57 +00:00
[General] Add dontRead flag
This commit is contained in:
parent
ead92fff61
commit
4daf471874
1 changed files with 2 additions and 1 deletions
|
@ -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…
Reference in a new issue