diff options
-rw-r--r-- | player.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -4,10 +4,11 @@ #include "texture.h" class Player { - public: + protected: float x, y, move_factor, focus_factor; Texture *texture; + public: Player(); void draw(); void update(); |