Compare commits

..

No commits in common. "04a2663a46c3cb0d65c2053a318284704de79ba2" and "bd23eb57931fd5c35a6d7808bbfb96e029e0690e" have entirely different histories.

157 changed files with 107 additions and 1963 deletions

10
Feature.h Normal file
View File

@ -0,0 +1,10 @@
#ifndef FEATURE_H
#define FEATURE_H
#include <string>
struct Feature {
std::string name;
int value;
};
#endif // FEATURE_H

View File

@ -11,22 +11,21 @@ CONFIG += c++17
SOURCES += \
character.cpp \
main.cpp \
mainwindow.cpp \
notepad.cpp
mainwindow.cpp
HEADERS += \
Feature.h \
Possession.h \
Skill.h \
SpecialSkill.h \
Weapon.h \
character.h \
mainwindow.h \
notepad.h \
mainwindow.h
FORMS += \
mainwindow.ui \
notepad.ui \
mainwindow.ui
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
RESOURCES += \
data.qrc

Some files were not shown because too many files have changed in this diff Show More