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

View file

@ -8,6 +8,7 @@
#include "gx/Screen.hpp"
#include "gx/Texture.hpp"
#include "model/Model2.hpp"
#include "net/Poll.hpp"
#include "ui/FrameScript.hpp"
#include "ui/FrameXML.hpp"
#include "util/BlizzardCore.hpp"
@ -436,5 +437,6 @@ void WowClientInit() {
// TODO
// CGlueMgr::m_pendingTimerAlert = dword_B2F9D8;
// sub_7FC5A0();
// EventRegister(EVENT_ID_POLL, &PollNet);
EventRegister(EVENT_ID_POLL, &PollNet);
}