entity_spell_system/ui/unit_frame.h
2019-12-25 14:08:01 +01:00

16 lines
238 B
C++

#ifndef UNIT_FRAME_H
#define UNIT_FRAME_H
#include "scene/gui/panel.h"
#include "scene/resources/texture.h"
//remove this
class UnitFrame : public Panel {
GDCLASS(UnitFrame, Panel);
protected:
static void _bind_methods();
};
#endif