aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/ParticleSystem.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/crepe/ParticleSystem.h')
-rw-r--r--src/crepe/ParticleSystem.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/crepe/ParticleSystem.h b/src/crepe/ParticleSystem.h
index 071eec4..ad96eb0 100644
--- a/src/crepe/ParticleSystem.h
+++ b/src/crepe/ParticleSystem.h
@@ -1,7 +1,6 @@
#pragma once
#include "api/ParticleEmitter.h"
-#include <vector>
namespace crepe {
@@ -13,7 +12,7 @@ public:
private:
void emit_particle(ParticleEmitter & emitter); //emits a new particle
- float m_elapsed_time; //elapsed time since the last emission
+ float elapsed_time; //elapsed time since the last emission
};
} // namespace crepe