feat(client): add WowClientDestroy

This commit is contained in:
fallenoak 2026-01-02 22:07:00 -06:00
parent d5ef246bdf
commit 6db4041b8d
No known key found for this signature in database
GPG Key ID: 7628F8E61AEA070D
2 changed files with 14 additions and 0 deletions

View File

@ -175,6 +175,10 @@ void ClientPostClose(int32_t a1) {
int32_t DestroyEngineCallback(const void* a1, void* a2) {
// TODO
WowClientDestroy();
// TODO
return 1;
}
@ -495,6 +499,14 @@ void StormInitialize() {
Blizzard::Debug::SetAssertHandler(BlizzardAssertCallback);
}
void WowClientDestroy() {
// TODO
CGlueMgr::Shutdown();
// TODO
}
void WowClientInit() {
// TODO
// EventRegister(EVENT_ID_5, (int)sub_4020E0);

View File

@ -20,6 +20,8 @@ void CommonMain();
void StormInitialize();
void WowClientDestroy();
void WowClientInit();
#endif