diff options
author | Yohann Ferreira <yohann_dot_ferreira_at_orange_dot_efer> | 2011-04-30 23:55:37 +0200 |
---|---|---|
committer | Yohann Ferreira <yohann_dot_ferreira_at_orange_dot_efer> | 2011-04-30 23:56:34 +0200 |
commit | 2cd059d163e5ddc05384aec1ffc3460074691448 (patch) | |
tree | b55cac5091b70c70fdc39f1481466ed99ae445e6 /src/being.h | |
parent | ad85ee32f90939717c5fac5defcdc20f82eb3922 (diff) | |
download | mana-2cd059d163e5ddc05384aec1ffc3460074691448.tar.gz mana-2cd059d163e5ddc05384aec1ffc3460074691448.tar.bz2 mana-2cd059d163e5ddc05384aec1ffc3460074691448.tar.xz mana-2cd059d163e5ddc05384aec1ffc3460074691448.zip |
Fixed documentation about beings attack speed unit.
Diffstat (limited to 'src/being.h')
-rw-r--r-- | src/being.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/being.h b/src/being.h index bc749a3a..d2a2701a 100644 --- a/src/being.h +++ b/src/being.h @@ -326,13 +326,14 @@ class Being : public ActorSprite, public EventListener /** * Sets the attack speed. - * @todo In what unit? + * @note The attack speed is to be set in milliseconds + * before next attack. */ void setAttackSpeed(int speed) { mAttackSpeed = speed; } /** * Gets the attack speed. - * @todo In what unit? + * @note The attack speed is in milliseconds before next attack. */ int getAttackSpeed() const { return mAttackSpeed; } |