summaryrefslogtreecommitdiff
path: root/src/particle.h
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2008-08-27 18:48:13 +0000
committerBjørn Lindeijer <bjorn@lindeijer.nl>2008-08-27 18:48:13 +0000
commita5d45f2fa5b0042e2d08a2bfed060dfb0417e75e (patch)
tree576815fd394d8d7bee804aaf46e9ff59f8eeb512 /src/particle.h
parent2cdb3c70b062014d9e96ff778c3bdee8796ecf5e (diff)
downloadmana-client-a5d45f2fa5b0042e2d08a2bfed060dfb0417e75e.tar.gz
mana-client-a5d45f2fa5b0042e2d08a2bfed060dfb0417e75e.tar.bz2
mana-client-a5d45f2fa5b0042e2d08a2bfed060dfb0417e75e.tar.xz
mana-client-a5d45f2fa5b0042e2d08a2bfed060dfb0417e75e.zip
Renamed "randomnes" to "randomness", so that it won't show up as part of Fate's
patch.
Diffstat (limited to 'src/particle.h')
-rw-r--r--src/particle.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/particle.h b/src/particle.h
index 88a38417..d9b8c6b7 100644
--- a/src/particle.h
+++ b/src/particle.h
@@ -227,8 +227,8 @@ class Particle : public Sprite
* Sets the ammount of random vector changes
*/
void
- setRandomnes(int r)
- { mRandomnes = r; }
+ setRandomness(int r)
+ { mRandomness = r; }
/**
* Sets the ammount of velocity particles retain after
@@ -303,7 +303,7 @@ class Particle : public Sprite
// dynamic particle
Vector mVelocity; /**< Speed in pixels per game-tick. */
float mGravity; /**< Downward acceleration in pixels per game-tick. */
- int mRandomnes; /**< Ammount of random vector change */
+ int mRandomness; /**< Ammount of random vector change */
float mBounce; /**< How much the particle bounces off when hitting the ground */
bool mFollow; /**< is this particle moved when its parent particle moves? */