mirror of
https://github.com/Relintai/entity_spell_system.git
synced 2025-02-22 17:18:12 +01:00
21 lines
278 B
C++
21 lines
278 B
C++
#ifndef SPELL_VISUAL_EFFECT_H
|
|
#define SPELL_VISUAL_EFFECT_H
|
|
|
|
#include "core/reference.h"
|
|
|
|
class SpellVisualEffect : public Reference {
|
|
GDCLASS(SpellVisualEffect, Reference);
|
|
|
|
public:
|
|
void set_id() {}
|
|
|
|
protected:
|
|
static void _bind_methods() {
|
|
}
|
|
|
|
private:
|
|
int id;
|
|
};
|
|
|
|
#endif
|