diff options
author | Hal9OOO <miglietta.francesco@gmail.com> | 2012-10-25 19:15:19 +0200 |
---|---|---|
committer | Hal9OOO <miglietta.francesco@gmail.com> | 2012-10-25 19:15:19 +0200 |
commit | 3531d0f9abc4c773cab8353a0b70ad3d4a3a255e (patch) | |
tree | 7f934b293c04321d6791f40f673b10a2e8ea1a0d /src/resources/beinginfo.h | |
parent | 4358743175ef738cd2943ab1e5fb741c560f1bd4 (diff) | |
parent | 1e4aa6a5e7476bea736b89fe5d7094b6a68705e5 (diff) | |
download | manaplus-3531d0f9abc4c773cab8353a0b70ad3d4a3a255e.tar.gz manaplus-3531d0f9abc4c773cab8353a0b70ad3d4a3a255e.tar.bz2 manaplus-3531d0f9abc4c773cab8353a0b70ad3d4a3a255e.tar.xz manaplus-3531d0f9abc4c773cab8353a0b70ad3d4a3a255e.zip |
Merge branch 'master' of gitorious.org:manaplus/manaplus
Diffstat (limited to 'src/resources/beinginfo.h')
-rw-r--r-- | src/resources/beinginfo.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/resources/beinginfo.h b/src/resources/beinginfo.h index 8f3d09001..ed73f576a 100644 --- a/src/resources/beinginfo.h +++ b/src/resources/beinginfo.h @@ -25,6 +25,8 @@ #include "actorsprite.h" +#include "resources/cursor.h" + #include <list> #include <map> @@ -104,6 +106,15 @@ class BeingInfo final &targetSize) { mTargetCursorSize = targetSize; } + void setHoverCursor(const std::string &name) + { return setHoverCursor(Cursor::stringToCursor(name)); } + + void setHoverCursor(const Cursor::Cursor &cursor) + { mHoverCursor = cursor; } + + Cursor::Cursor getHoverCursor() + { return mHoverCursor; } + ActorSprite::TargetCursorSize getTargetCursorSize() const { return mTargetCursorSize; } @@ -183,6 +194,7 @@ class BeingInfo final SpriteDisplay mDisplay; std::string mName; ActorSprite::TargetCursorSize mTargetCursorSize; + Cursor::Cursor mHoverCursor; SoundEvents mSounds; Attacks mAttacks; unsigned char mWalkMask; |