feat(net): wire up polling loop for realm connections

This commit is contained in:
fallenoak 2023-02-25 15:59:30 -06:00
parent cf6bc34657
commit 5e2c1e7769
No known key found for this signature in database
GPG key ID: 7628F8E61AEA070D
8 changed files with 178 additions and 5 deletions

10
src/net/Poll.cpp Normal file
View 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;
}