Skip to content

Commit

Permalink
Particle: Remove empty destructor
Browse files Browse the repository at this point in the history
  • Loading branch information
dscharrer committed Aug 2, 2021
1 parent 6139af3 commit 5a8ccab
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions src/graphics/particle/Particle.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,6 @@ Particle::Particle()
fColorEnd = Color4f(1, 1, 1, 0.1f);
}

Particle::~Particle() { }

void Particle::Regen() {
p3Pos = Vec3f(0.f);
m_age = 0;
Expand Down
1 change: 0 additions & 1 deletion src/graphics/particle/Particle.h
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ class Particle {
int iTexNum;

Particle();
~Particle();

void Regen();
void Update(GameDuration delta);
Expand Down

0 comments on commit 5a8ccab

Please sign in to comment.