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 += \ SOURCES += \
character.cpp \ character.cpp \
main.cpp \ main.cpp \
mainwindow.cpp \ mainwindow.cpp
notepad.cpp
HEADERS += \ HEADERS += \
Feature.h \
Possession.h \
Skill.h \
SpecialSkill.h \
Weapon.h \
character.h \ character.h \
mainwindow.h \ mainwindow.h
notepad.h \
FORMS += \ FORMS += \
mainwindow.ui \ mainwindow.ui
notepad.ui \
# Default rules for deployment. # Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target !isEmpty(target.path): INSTALLS += target
RESOURCES += \
data.qrc

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