mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-22 03:46:50 +01:00
20 lines
254 B
C++
20 lines
254 B
C++
#ifndef CHARACTER_BONES_H
|
|
#define CHARACTER_BONES_H
|
|
|
|
|
|
#include "scene/main/node_2d.h"
|
|
|
|
class CharacterBones : public Node2D {
|
|
GDCLASS(CharacterBones, Node2D);
|
|
|
|
public:
|
|
CharacterBones();
|
|
|
|
protected:
|
|
static void _bind_methods();
|
|
|
|
//private:
|
|
};
|
|
|
|
#endif
|