#ifndef LOTOSTATEK_PLAYER_H #define LOTOSTATEK_PLAYER_H #include "Actor.h" class Player : public Actor { public: Player(int x, int y, std::string path); private: }; #endif //LOTOSTATEK_PLAYER_H