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