#pragma once #include struct Player { Player(); void update(float dt); void draw(); Vector2 m_position; };