feat: add equipment set manager window (backtick key)

Lists all saved equipment sets from SMSG_EQUIPMENT_SET_LIST with
icon placeholder and an Equip button per set. Clicking either the
icon or the Equip button sends CMSG_EQUIPMENT_SET_USE to swap the
player's gear to that set. Window toggled with the ` (backtick) key.
This commit is contained in:
Kelsi 2026-03-12 20:28:03 -07:00
parent 1bf4c2442a
commit f5d23a3a12
2 changed files with 75 additions and 0 deletions

View file

@ -433,6 +433,10 @@ private:
bool showTitlesWindow_ = false;
void renderTitlesWindow(game::GameHandler& gameHandler);
// Equipment Set Manager window
bool showEquipSetWindow_ = false;
void renderEquipSetWindow(game::GameHandler& gameHandler);
// GM Ticket window
bool showGmTicketWindow_ = false;
char gmTicketBuf_[2048] = {};