entity_spell_system/entities/player.h

17 lines
160 B
C
Raw Normal View History

2019-04-20 14:02:55 +02:00
#ifndef PLAYER_H
#define PLAYER_H
#include "entity.h"
class Player : public Entity {
GDCLASS(Player, Entity);
public:
Player();
//private:
};
#endif