#ifndef _PLAYER_H_ #define _PLAYER_H_ #include "texture.h" class Player { protected: float x, y, move_factor, focus_factor; Texture *texture; public: Player(); void draw(); void update(); }; #endif