diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-04-21 18:57:48 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-04-21 18:57:48 +0300 |
commit | 35cfd460655878c9a615abc8ea1cb2f7577a7f3b (patch) | |
tree | 2b4cb899f7f442912f89de30f4a5ab0add0727ce /src/particleemitter.h | |
parent | cfe4c893ba4ba30379919636d3c508ebf1594e23 (diff) | |
download | plus-35cfd460655878c9a615abc8ea1cb2f7577a7f3b.tar.gz plus-35cfd460655878c9a615abc8ea1cb2f7577a7f3b.tar.bz2 plus-35cfd460655878c9a615abc8ea1cb2f7577a7f3b.tar.xz plus-35cfd460655878c9a615abc8ea1cb2f7577a7f3b.zip |
some other fixes from cpplint.
Diffstat (limited to 'src/particleemitter.h')
-rw-r--r-- | src/particleemitter.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/particleemitter.h b/src/particleemitter.h index 83cd7af82..12b43ca53 100644 --- a/src/particleemitter.h +++ b/src/particleemitter.h @@ -123,30 +123,30 @@ class ParticleEmitter final ParticleEmitterProp<int> mParticleFadeOut; ParticleEmitterProp<int> mParticleFadeIn; - // Map the particles are spawned on + // Map the particles are spawned on Map *mMap; - // Number of particles spawned per update - ParticleEmitterProp<int> mOutput; + // Number of particles spawned per update + ParticleEmitterProp<int> mOutput; - // Pause in frames between two spawns - ParticleEmitterProp<int> mOutputPause; + // Pause in frames between two spawns + ParticleEmitterProp<int> mOutputPause; int mOutputPauseLeft; /* * Graphical representation of the particles */ - // Particle image, if used + // Particle image, if used Image *mParticleImage; - // Filename of particle animation file + // Filename of particle animation file Animation mParticleAnimation; - // Filename of particle rotation file + // Filename of particle rotation file Animation mParticleRotation; - // Opacity of the graphical representation of the particles - ParticleEmitterProp<float> mParticleAlpha; + // Opacity of the graphical representation of the particles + ParticleEmitterProp<float> mParticleAlpha; /* * Death effect of the particles |