This commit is contained in:
2023-10-18 23:32:04 -05:00
parent 9ad9995663
commit b9493840f4
11 changed files with 134 additions and 96 deletions

View File

@ -41,5 +41,12 @@ namespace Dawn {
}
}, getScene()->eventSceneUpdate);
}
public:
std::string getChoiceKey() {
auto it = choices.begin();
std::advance(it, choice);
return it->first;
}
};
}