entity_spell_system/entities/player.h
2019-04-20 14:02:55 +02:00

17 lines
160 B
C++

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