entity_spell_system/skeleton/character_bones.h

19 lines
251 B
C
Raw Normal View History

2019-08-24 21:27:42 +02:00
#ifndef CHARACTER_BONES_H
#define CHARACTER_BONES_H
#include "scene/2d/node_2d.h"
2019-08-24 21:27:42 +02:00
class CharacterBones : public Node2D {
GDCLASS(CharacterBones, Node2D);
2019-08-24 21:27:42 +02:00
public:
CharacterBones();
protected:
static void _bind_methods();
//private:
2019-08-24 21:27:42 +02:00
};
#endif