diff options
Diffstat (limited to 'src/particles.h')
-rw-r--r-- | src/particles.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/particles.h b/src/particles.h index 64b4db0c4..195658045 100644 --- a/src/particles.h +++ b/src/particles.h @@ -53,7 +53,7 @@ class Particle : public scene::ISceneNode u8 glow, video::SColor color = video::SColor(0xFFFFFFFF) ); - ~Particle(); + ~Particle() = default; virtual const aabb3f &getBoundingBox() const { @@ -133,7 +133,7 @@ class ParticleSpawner const struct TileAnimationParams &anim, u8 glow, ParticleManager* p_manager); - ~ParticleSpawner(); + ~ParticleSpawner() = default; void step(float dtime, ClientEnvironment *env); |