mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-03-23 07:40:14 +00:00
The funcList_ dispatchers were populated by initializeModule() but the public tick(), generateRC4Keys(), and unload() methods had their actual call sites commented out as TODOs. - tick(): now calls funcList_.tick(deltaMs) so the emulated module can run its internal periodic scheduler. - generateRC4Keys(): now calls funcList_.generateRC4Keys(packet) so the Warden crypto stream is re-keyed as the module expects. - unload(): now calls funcList_.unload(nullptr) before freeing module memory, allowing the module to clean up its own state. All three paths already guard on !loaded_ || !funcList_.<fn> so they are no-ops when the module is not loaded or Unicorn is unavailable. |
||
|---|---|---|
| .. | ||
| audio | ||
| auth | ||
| core | ||
| game | ||
| network | ||
| pipeline | ||
| rendering | ||
| ui | ||
| main.cpp | ||