summaryrefslogtreecommitdiff
path: root/src/gui/menu.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/menu.h')
-rw-r--r--src/gui/menu.h13
1 files changed, 11 insertions, 2 deletions
diff --git a/src/gui/menu.h b/src/gui/menu.h
index 5d905c86..040c9a9d 100644
--- a/src/gui/menu.h
+++ b/src/gui/menu.h
@@ -25,15 +25,16 @@
#define _TMW_MENU_H
#include <guichan.hpp>
-#include "menuitem.h"
#include "window.h"
+#include "menuitem.h"
+#include "../being.h"
class Menu : public Window {
public:
/**
* Constructor.
*/
- Menu(const std::string& menulabel, std::vector<MenuItem *> items);
+ Menu(std::vector<MenuItem *> items);
/**
* Destructor.
@@ -45,6 +46,14 @@ class Menu : public Window {
*/
void fill(std::vector<MenuItem *> items);
+ /**
+ * Set/get begin
+ */
+ void setBeing(Being *target);
+ Being * getBeing(void);
+
+ private:
+ Being *where; // Where to display
};
#endif /* _TMW_MENU_H */