mirror of
https://github.com/Relintai/entity_spell_system.git
synced 2025-02-22 17:18:12 +01:00
15 lines
224 B
C++
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
|