24 lines
351 B
C++
24 lines
351 B
C++
#ifndef CHARACTER_H
|
|
#define CHARACTER_H
|
|
|
|
#include "Feature.h"
|
|
#include "Skill.h"
|
|
#include "SpecialSkill.h"
|
|
|
|
#include <QList>
|
|
|
|
using namespace std;
|
|
|
|
class Character{
|
|
private:
|
|
string name;
|
|
string age;
|
|
QList<Feature> features;
|
|
QList<Skill> skills;
|
|
QList<SpecialSkill> specialSkills;
|
|
public:
|
|
Character();
|
|
};
|
|
|
|
#endif // CHARACTER_H
|