diff --git a/spells/spell_projectile.cpp b/spells/spell_projectile.cpp deleted file mode 100644 index d63107a..0000000 --- a/spells/spell_projectile.cpp +++ /dev/null @@ -1,11 +0,0 @@ -#include "spell_projectile.h" - - -SpellProjectile::SpellProjectile() { -} - -SpellProjectile::~SpellProjectile() { -} - -void SpellProjectile::_bind_methods() { -} diff --git a/spells/spell_projectile.h b/spells/spell_projectile.h deleted file mode 100644 index 566e853..0000000 --- a/spells/spell_projectile.h +++ /dev/null @@ -1,28 +0,0 @@ -#ifndef SPELL_PROJECTILE_H -#define SPELL_PROJECTILE_H - -#ifdef ENTITIES_2D -#include "scene/2d/node_2d.h" -#else -#include "scene/3d/spatial.h" -#endif - - -#ifdef ENTITIES_2D -class SpellProjectile : public Node2D { - GDCLASS(SpellProjectile, Node2D); -#else -class SpellProjectile : public Spatial { - GDCLASS(SpellProjectile, Spatial); -#endif - -public: - SpellProjectile(); - ~SpellProjectile(); - -protected: - static void _bind_methods(); -//private: -}; - -#endif diff --git a/spells/world_spell_effect.cpp b/spells/world_spell_effect.cpp deleted file mode 100644 index 55db031..0000000 --- a/spells/world_spell_effect.cpp +++ /dev/null @@ -1,10 +0,0 @@ -#include "world_spell_effect.h" - -WorldSpellEffect::WorldSpellEffect() { -} - -WorldSpellEffect::~WorldSpellEffect() { -} - -void WorldSpellEffect::_bind_methods() { -} diff --git a/spells/world_spell_effect.h b/spells/world_spell_effect.h deleted file mode 100644 index 04523a4..0000000 --- a/spells/world_spell_effect.h +++ /dev/null @@ -1,19 +0,0 @@ -#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