#pragma once #include #include #include "location.h" class Player { public: std::string name = "Character Name"; int hp = 100; int atk = 10; int gold = 0; int currentLocation = 1; Point position; int weaponId = 101; std::vector items; Player() = default; Player(std::string name); void showStats() const; };