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