#pragma once #include enum PPlayerFacingDirection { Up, Down, Left, Right }; struct PPlayer { std::string name; int x; int y; int health = 100; int maxHealth = 100; PPlayerFacingDirection facing = Up; }; void PRenderPlayer(PPlayer *player);