entity_spell_system/ui/unit_frame.h
2019-04-20 14:02:55 +02:00

15 lines
224 B
C++

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