diff options
Diffstat (limited to 'src/resources/beinginfo.h')
-rw-r--r-- | src/resources/beinginfo.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/resources/beinginfo.h b/src/resources/beinginfo.h index 554b1efaf..f76a08cc6 100644 --- a/src/resources/beinginfo.h +++ b/src/resources/beinginfo.h @@ -95,7 +95,7 @@ class BeingInfo final void setTargetCursorSize(const std::string &size); - void setTargetCursorSize(const ActorSprite::TargetCursorSize + void setTargetCursorSize(const TargetCursorSize::Size &targetSize) { mTargetCursorSize = targetSize; } @@ -108,7 +108,7 @@ class BeingInfo final Cursor::Cursor getHoverCursor() const A_WARN_UNUSED { return mHoverCursor; } - ActorSprite::TargetCursorSize getTargetCursorSize() const A_WARN_UNUSED + TargetCursorSize::Size getTargetCursorSize() const A_WARN_UNUSED { return mTargetCursorSize; } void addSound(const ItemSoundEvent event, const std::string &filename, @@ -341,7 +341,7 @@ class BeingInfo final private: SpriteDisplay mDisplay; std::string mName; - ActorSprite::TargetCursorSize mTargetCursorSize; + TargetCursorSize::Size mTargetCursorSize; Cursor::Cursor mHoverCursor; ItemSoundEvents mSounds; Attacks mAttacks; |