Add interactive world map with continent/zone navigation

This commit is contained in:
Kelsi 2026-02-04 22:27:45 -08:00
parent 47945451be
commit affcfcfce1
6 changed files with 1172 additions and 1 deletions

View file

@ -2,6 +2,7 @@
#include "game/game_handler.hpp"
#include "game/inventory.hpp"
#include "rendering/world_map.hpp"
#include "ui/inventory_screen.hpp"
#include "ui/spellbook_screen.hpp"
#include <imgui.h>
@ -122,8 +123,11 @@ private:
/**
* Inventory screen
*/
void renderWorldMap(game::GameHandler& gameHandler);
InventoryScreen inventoryScreen;
SpellbookScreen spellbookScreen;
rendering::WorldMap worldMap;
};
}} // namespace wowee::ui