Added left mouse click support for menu, submenu and battle

This commit is contained in:
Xawotihs
2010-10-10 21:59:18 +00:00
parent e342103204
commit 93b1656f13
5 changed files with 57 additions and 7 deletions

View File

@@ -42,6 +42,7 @@ class SimpleMenuItem: public JGuiObject
virtual bool Leaving(JButton key);
virtual bool ButtonPressed();
virtual ostream& toString(ostream& out) const;
virtual bool getTopLeft(int& top, int& left) {top = mY; left = mX; return true;};
};
#endif