diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2008-12-07 03:14:31 +0100 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2008-12-07 13:45:44 +0100 |
commit | b9cacafcad8b515c1c65aee804a3ce08411b73c9 (patch) | |
tree | 8a82fabf08b322de8b31b97bc356caccc33f90f6 /src/statuseffect.h | |
parent | 3fcd6a549fc825f4185a6dc248922e02988caed5 (diff) | |
download | mana-b9cacafcad8b515c1c65aee804a3ce08411b73c9.tar.gz mana-b9cacafcad8b515c1c65aee804a3ce08411b73c9.tar.bz2 mana-b9cacafcad8b515c1c65aee804a3ce08411b73c9.tar.xz mana-b9cacafcad8b515c1c65aee804a3ce08411b73c9.zip |
Some small updates and reformatting
Diffstat (limited to 'src/statuseffect.h')
-rw-r--r-- | src/statuseffect.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/statuseffect.h b/src/statuseffect.h index 9db90687..5d18ac92 100644 --- a/src/statuseffect.h +++ b/src/statuseffect.h @@ -18,6 +18,7 @@ * along with The Mana World; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + #ifndef STATUS_EFFECT_H #define STATUS_EFFECT_H @@ -33,36 +34,35 @@ public: ~StatusEffect(); /** - * Plays the sound effect associated with this status effect, if possible + * Plays the sound effect associated with this status effect, if possible. */ void playSFX(); /** - * Delivers the chat message associated with this status effect, if possible + * Delivers the chat message associated with this status effect, if + * possible. */ void deliverMessage(); /** - * Creates the particle effect associated with this status effect, if possible + * Creates the particle effect associated with this status effect, if + * possible. */ - Particle * - getParticle(); + Particle *getParticle(); /** * Retrieves the status icon for this effect, if applicable */ - AnimatedSprite * - getIcon(); + AnimatedSprite *getIcon(); /** * Retrieves an action to perform, or ACTION_INVALID */ - SpriteAction - getAction(); + SpriteAction getAction(); /** - * Retrieves a status effect. + * Retrieves a status effect. * * \param index Index of the status effect. * \param enabling Whether to retrieve the activating effect (true) or @@ -71,7 +71,7 @@ public: static StatusEffect *getStatusEffect(int index, bool enabling); /** - * Retrieves a stun effect. + * Retrieves a stun effect. * * \param index Index of the stun effect. * \param enabling Whether to retrieve the activating effect (true) or |