These weren't supposed to be committed.

This commit is contained in:
Relintai 2019-12-10 12:21:54 +01:00
parent 94dbc91b88
commit ba1a170fc0
4 changed files with 0 additions and 68 deletions

View File

@ -1,11 +0,0 @@
#include "spell_projectile.h"
SpellProjectile::SpellProjectile() {
}
SpellProjectile::~SpellProjectile() {
}
void SpellProjectile::_bind_methods() {
}

View File

@ -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

View File

@ -1,10 +0,0 @@
#include "world_spell_effect.h"
WorldSpellEffect::WorldSpellEffect() {
}
WorldSpellEffect::~WorldSpellEffect() {
}
void WorldSpellEffect::_bind_methods() {
}

View File

@ -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