entity_spell_system/ui/unit_frame.h

15 lines
224 B
C
Raw Normal View History

2019-04-20 14:02:55 +02:00
#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