add of menu ui, structures and declaration of Chracter class

This commit is contained in:
2025-06-22 18:22:32 +02:00
parent 99eabc1a72
commit bd23eb5793
444 changed files with 674 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
#ifndef WEAPON_H
#define WEAPON_H
#include <string>
struct Weapon {
std::string name;
int value1;
int value2;
};
#endif // WEAPON_H