diff options
author | idiomatic <idio.castellani@gmail.com> | 2010-02-28 21:52:22 -0700 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2010-02-28 21:52:22 -0700 |
commit | d32203d2e6539aa22953b9c04df000f79e85bf66 (patch) | |
tree | 3cc7e26cb6dd39e1a67d609b53d5a23bcf5269be /src/gui/viewport.h | |
parent | e4a6c7106900bfec75bc9ee36ea2f37297100575 (diff) | |
download | mana-d32203d2e6539aa22953b9c04df000f79e85bf66.tar.gz mana-d32203d2e6539aa22953b9c04df000f79e85bf66.tar.bz2 mana-d32203d2e6539aa22953b9c04df000f79e85bf66.tar.xz mana-d32203d2e6539aa22953b9c04df000f79e85bf66.zip |
Add some new mousers and simplify related code
Signed-off-by: Jared Adams <jaxad0127@gmail.com>
Diffstat (limited to 'src/gui/viewport.h')
-rw-r--r-- | src/gui/viewport.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/viewport.h b/src/gui/viewport.h index 5b92d950..c4fcece4 100644 --- a/src/gui/viewport.h +++ b/src/gui/viewport.h @@ -189,7 +189,8 @@ class Viewport : public WindowContainer, public gcn::MouseListener, int mLocalWalkTime; /**< Timestamp before the next walk can be sent. */ PopupMenu *mPopupMenu; /**< Popup menu. */ - Being *mSelectedBeing; /**< Current selected being. */ + Being *mHoverBeing; /**< Being mouse is currently over. */ + FloorItem *mHoverItem; /**< FloorItem mouse is currently over. */ BeingPopup *mBeingPopup; }; |