entity_spell_system/data/spell_effect_visual.h

20 lines
289 B
C
Raw Normal View History

#ifndef SPELL_EFFECT_VISUAL_H
#define SPELL_EFFECT_VISUAL_H
#include "core/resource.h"
class SpellEffectVisual : public Resource {
GDCLASS(SpellEffectVisual, Resource);
public:
SpellEffectVisual();
~SpellEffectVisual();
protected:
static void _bind_methods();
2019-10-17 21:42:01 +02:00
private:
};
#endif