#ifndef PLAYER_H #define PLAYER_H #include "entity.h" class Player : public Entity { GDCLASS(Player, Entity); public: Player(); //private: }; #endif