feat(net): support adding events to the NetClient event queue

This commit is contained in:
fallenoak 2023-02-25 13:56:08 -06:00
parent 066e650958
commit cf6bc34657
No known key found for this signature in database
GPG key ID: 7628F8E61AEA070D
2 changed files with 25 additions and 1 deletions

View file

@ -22,6 +22,11 @@ struct AuthenticationChallenge {
class NETEVENTQUEUENODE : public TSLinkedNode<NETEVENTQUEUENODE> {
public:
// Member variables
EVENTID m_eventId;
uint32_t m_timeReceived;
void* m_data;
uint32_t m_dataSize;
};
class NETEVENTQUEUE {