Fix single-player spawn coords and show action bar spell names

This commit is contained in:
Kelsi 2026-02-05 15:07:13 -08:00
parent 060f2bbb9f
commit 5ece5b1ce6
5 changed files with 79 additions and 18 deletions

View file

@ -7,6 +7,7 @@
#include "ui/spellbook_screen.hpp"
#include <imgui.h>
#include <string>
#include <unordered_map>
namespace wowee { namespace ui {
@ -129,6 +130,10 @@ private:
InventoryScreen inventoryScreen;
SpellbookScreen spellbookScreen;
rendering::WorldMap worldMap;
bool actionSpellDbAttempted = false;
bool actionSpellDbLoaded = false;
std::unordered_map<uint32_t, std::string> actionSpellNames;
};
}} // namespace wowee::ui