mirror of
https://github.com/Relintai/entity_spell_system.git
synced 2025-02-22 17:18:12 +01:00
20 lines
287 B
C++
20 lines
287 B
C++
#ifndef WORLD_SPELL_EFFECT_H
|
|
#define WORLD_SPELL_EFFECT_H
|
|
|
|
#include "../entities/entity.h"
|
|
|
|
class WorldSpellEffect : public Entity {
|
|
GDCLASS(WorldSpellEffect, Entity);
|
|
|
|
public:
|
|
WorldSpellEffect();
|
|
~WorldSpellEffect();
|
|
|
|
protected:
|
|
static void _bind_methods();
|
|
|
|
//private:
|
|
};
|
|
|
|
#endif
|