dev #2

Merged
Giovanni-Josserand merged 13 commits from dev into main 2025-07-14 21:32:59 +00:00
444 changed files with 674 additions and 0 deletions
Showing only changes of commit bd23eb5793 - Show all commits

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

@ -9,10 +9,17 @@ CONFIG += c++17
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0 #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
SOURCES += \ SOURCES += \
character.cpp \
main.cpp \ main.cpp \
mainwindow.cpp mainwindow.cpp
HEADERS += \ HEADERS += \
Feature.h \
Possession.h \
Skill.h \
SpecialSkill.h \
Weapon.h \
character.h \
mainwindow.h mainwindow.h
FORMS += \ FORMS += \

View File

@ -0,0 +1,21 @@
QMAKE_CXX.QT_COMPILER_STDCXX = 201703L
QMAKE_CXX.QMAKE_GCC_MAJOR_VERSION = 13
QMAKE_CXX.QMAKE_GCC_MINOR_VERSION = 1
QMAKE_CXX.QMAKE_GCC_PATCH_VERSION = 0
QMAKE_CXX.COMPILER_MACROS = \
QT_COMPILER_STDCXX \
QMAKE_GCC_MAJOR_VERSION \
QMAKE_GCC_MINOR_VERSION \
QMAKE_GCC_PATCH_VERSION
QMAKE_CXX.INCDIRS = \
C:/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++ \
C:/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32 \
C:/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward \
C:/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include \
C:/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed \
C:/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include
QMAKE_CXX.LIBDIRS = \
C:/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0 \
C:/Qt/Tools/mingw1310_64/lib/gcc \
C:/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/lib \
C:/Qt/Tools/mingw1310_64/lib

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