improve ui
This commit is contained in:
parent
ffa4cb0d1d
commit
a7dadefb1a
@ -15,10 +15,8 @@ SOURCES += \
|
|||||||
|
|
||||||
HEADERS += \
|
HEADERS += \
|
||||||
Feature.h \
|
Feature.h \
|
||||||
Possession.h \
|
|
||||||
Skill.h \
|
Skill.h \
|
||||||
SpecialSkill.h \
|
SpecialSkill.h \
|
||||||
Weapon.h \
|
|
||||||
character.h \
|
character.h \
|
||||||
mainwindow.h
|
mainwindow.h
|
||||||
|
|
||||||
|
|||||||
11
Possession.h
11
Possession.h
@ -1,11 +0,0 @@
|
|||||||
#ifndef POSSESSION_H
|
|
||||||
#define POSSESSION_H
|
|
||||||
|
|
||||||
#include <string>
|
|
||||||
|
|
||||||
struct Possession {
|
|
||||||
std::string name;
|
|
||||||
int value;
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif // POSSESSION_H
|
|
||||||
12
Weapon.h
12
Weapon.h
@ -1,12 +0,0 @@
|
|||||||
#ifndef WEAPON_H
|
|
||||||
#define WEAPON_H
|
|
||||||
|
|
||||||
#include <string>
|
|
||||||
|
|
||||||
struct Weapon {
|
|
||||||
std::string name;
|
|
||||||
int value1;
|
|
||||||
int value2;
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif // WEAPON_H
|
|
||||||
@ -2,10 +2,8 @@
|
|||||||
#define CHARACTER_H
|
#define CHARACTER_H
|
||||||
|
|
||||||
#include "Feature.h"
|
#include "Feature.h"
|
||||||
#include "Possession.h"
|
|
||||||
#include "Skill.h"
|
#include "Skill.h"
|
||||||
#include "SpecialSkill.h"
|
#include "SpecialSkill.h"
|
||||||
#include "Weapon.h"
|
|
||||||
|
|
||||||
#include <QList>
|
#include <QList>
|
||||||
|
|
||||||
@ -18,8 +16,6 @@ private:
|
|||||||
QList<Feature> features;
|
QList<Feature> features;
|
||||||
QList<Skill> skills;
|
QList<Skill> skills;
|
||||||
QList<SpecialSkill> specialSkills;
|
QList<SpecialSkill> specialSkills;
|
||||||
QList<Weapon> weapons;
|
|
||||||
QList<Possession> possessions;
|
|
||||||
public:
|
public:
|
||||||
Character();
|
Character();
|
||||||
};
|
};
|
||||||
|
|||||||
1193
mainwindow.ui
1193
mainwindow.ui
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user