16 lines
187 B
C++
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
|