#pragma once #include #include #include #include namespace Game::AGame { GAME_ENTITY(Player) private: Object::Sound mSound; float mSpeed = 200.f; // Pixels per second [[maybe_unused]] float mHealth = 100.f; END_GAME_ENTITY() }