diff options
Diffstat (limited to 'src/gui/viewport.h')
-rw-r--r-- | src/gui/viewport.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/gui/viewport.h b/src/gui/viewport.h index f1cadd98..45863228 100644 --- a/src/gui/viewport.h +++ b/src/gui/viewport.h @@ -35,6 +35,7 @@ class Being; class FloorItem; class Item; class PopupMenu; +class SimpleAnimation; /** * The viewport on the map. Displays the current map and handles mouse input @@ -148,6 +149,12 @@ class Viewport : public WindowContainer, public gcn::MouseListener, int mCameraX; /**< Current viewpoint in tiles. */ int mCameraY; /**< Current viewpoint in tiles. */ bool mShowDebugPath; /**< Show a path from player to pointer. */ + + /** + * Target animated cursor. + */ + SimpleAnimation *mTargetCursorInRange; + SimpleAnimation *mTargetCursorOutRange; bool mPlayerFollowMouse; int mWalkTime; |