mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-05-03 08:03:50 +00:00
Fix character appearance, previews, mount seat, and online unequip
This commit is contained in:
parent
930ee76789
commit
0ff0f2f995
19 changed files with 743 additions and 113 deletions
|
|
@ -7,6 +7,7 @@
|
|||
#include <functional>
|
||||
#include <vector>
|
||||
#include <memory>
|
||||
#include <cstdint>
|
||||
|
||||
namespace wowee {
|
||||
namespace game { class GameHandler; }
|
||||
|
|
@ -39,6 +40,10 @@ private:
|
|||
std::string statusMessage;
|
||||
bool statusIsError = false;
|
||||
|
||||
// For many races/styles, CharSections hair color IDs are not guaranteed to be contiguous.
|
||||
// We expose an index (hairColor) in the UI and map it to the actual DBC hairColorId here.
|
||||
std::vector<uint8_t> hairColorIds_;
|
||||
|
||||
std::vector<game::Class> availableClasses;
|
||||
void updateAvailableClasses();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue