mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-14 20:12:29 +00:00
feat(net): support adding events to the NetClient event queue
This commit is contained in:
parent
066e650958
commit
cf6bc34657
2 changed files with 25 additions and 1 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue