feat: add World Map visibility toggle with keybinding support

Implement showWorldMap_ state variable and TOGGLE_WORLD_MAP keybinding
integration to allow players to customize the W key binding for opening/
closing the World Map, consistent with other window toggles like Nameplates
(V key) and Guild Roster (O key).
This commit is contained in:
Kelsi 2026-03-11 07:38:08 -07:00
parent 3092d406fa
commit a3e0d36a72
2 changed files with 7 additions and 0 deletions

View file

@ -67,6 +67,7 @@ private:
bool showPlayerInfo = false;
bool showSocialFrame_ = false; // O key toggles social/friends list
bool showGuildRoster_ = false;
bool showWorldMap_ = false; // W key toggles world map
std::string selectedGuildMember_;
bool showGuildNoteEdit_ = false;
bool editingOfficerNote_ = false;