#ifndef MENU_H
#define MENU_H
#include <vector>
#include <string>
#include "Namespace.h"
BEGIN_NAMESPACE
struct Menu
{
Menu();
void draw();
void initFromStringList(const char* a_strings[], int a_stringCount);
int lastMouseButtons;
int toggled;
int x, y, w, selectedMenu;
std::vector<std::pair<std::string, std::vector<std::string> > > menus;
};
END_NAMESPACE
#endif // MENU_H