mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-14 03:52:30 +00:00
feat(net): wire up polling loop for realm connections
This commit is contained in:
parent
cf6bc34657
commit
5e2c1e7769
8 changed files with 178 additions and 5 deletions
10
src/net/Poll.cpp
Normal file
10
src/net/Poll.cpp
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
#include "net/Poll.hpp"
|
||||
#include "net/connection/RealmConnection.hpp"
|
||||
|
||||
int32_t PollNet(const void* a1, void* a2) {
|
||||
RealmConnection::PollNet();
|
||||
|
||||
// TODO
|
||||
|
||||
return 1;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue