Files
ASCII-G/player.h
2026-06-04 04:08:55 +05:00

16 lines
187 B
C++

#pragma once
#include <string>
class Player {
public:
std::string name;
int hp;
int atk;
int gold;
Player(std::string _name);
void showStats();
};
#pragma once