00001 #ifndef MM_RH_MAINMENU_H 00002 #define MM_RH_MAINMENU_H 00003 00004 #include "net/NetClient.h" 00005 #include "gamestate.h" 00006 00007 class MainMenu : public GameState { 00008 public: 00009 MainMenu(MMNet::NetClient *client) : GameState(client) {}; 00010 void init(); 00011 void update(); 00012 void exit(); 00013 void display(); 00014 }; 00015 00016 #endif /* MM_RH_MAINMENU_H */
1.2.18