game is running! player can be created.

This commit is contained in:
DeLiss
2026-06-04 04:08:55 +05:00
commit d81111f001
10 changed files with 346 additions and 0 deletions

15
player.h Normal file
View File

@@ -0,0 +1,15 @@
#pragma once
#include <string>
class Player {
public:
std::string name;
int hp;
int atk;
int gold;
Player(std::string _name);
void showStats();
};
#pragma once