entity_spell_system/entities/player.h

25 lines
232 B
C++

#ifndef PLAYER_H
#define PLAYER_H
#include "entity.h"
class Bag;
class Player : public Entity {
GDCLASS(Player, Entity);
public:
void _setup();
Player();
protected:
static void _bind_methods();
private:
};
#endif