feat(ui): implement script methods for character creation screen

This commit is contained in:
VDm 2025-05-18 14:58:01 +04:00
parent 77cb9ed966
commit b4ff9994e2
11 changed files with 90 additions and 23 deletions

View file

@ -183,3 +183,15 @@ void CCharacterCreation::RandomizeCharFeatures() {
CCharacterCreation::m_prevHairStyleIndex = info.hairStyleID;
CCharacterCreation::m_prevFacialFeatureIndex = info.facialFeatureID;
}
void CCharacterCreation::SetSelectedRace(int32_t raceID) {
// TODO
}
void CCharacterCreation::SetSelectedSex(int32_t sexID) {
// TODO
}
void CCharacterCreation::SetSelectedClass(int32_t classID) {
// TODO
}