add of menu ui, structures and declaration of Chracter class

This commit is contained in:
2025-06-22 18:22:32 +02:00
parent 99eabc1a72
commit bd23eb5793
444 changed files with 674 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
#ifndef SPECIALSKILL_H
#define SPECIALSKILL_H
#include <string>
struct SpecialSkill {
std::string name;
int value;
};
#endif // SPECIALSKILL_H