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
+27
View File
@@ -0,0 +1,27 @@
#ifndef CHARACTER_H
#define CHARACTER_H
#include "Feature.h"
#include "Possession.h"
#include "Skill.h"
#include "SpecialSkill.h"
#include "Weapon.h"
#include <QList>
using namespace std;
class Character{
private:
string name;
string age;
QList<Feature> features;
QList<Skill> skills;
QList<SpecialSkill> specialSkills;
QList<Weapon> weapons;
QList<Possession> possessions;
public:
Character();
};
#endif // CHARACTER_H