#ifndef CHARACTER_H #define CHARACTER_H #include "Feature.h" #include "Skill.h" #include "SpecialSkill.h" #include using namespace std; class Character{ private: string name; string age; QList features; QList skills; QList specialSkills; public: Character(); }; #endif // CHARACTER_H