]> git.localhorst.tv Git - l2e.git/blobdiff - src/menu/PartyMenu.h
added party main menu stub
[l2e.git] / src / menu / PartyMenu.h
index 2172bfccc536e40bb339a052322857d21267f630..5baaf69ac9635c8219e389fb380ed8a160830e77 100644 (file)
@@ -13,6 +13,7 @@
 #include "../app/State.h"
 #include "../common/fwd.h"
 #include "../geometry/Vector.h"
+#include "../graphics/Menu.h"
 
 namespace menu {
 
@@ -41,10 +42,13 @@ private:
        virtual void OnResize(int width, int height);
 
        void RenderHeros(SDL_Surface *screen, const geometry::Vector<int> &offset) const;
+       void RenderMenu(SDL_Surface *screen, const geometry::Vector<int> &offset) const;
+       void RenderInfo(SDL_Surface *screen, const geometry::Vector<int> &offset) const;
 
 private:
        HeroStatus status[4];
        common::GameConfig *game;
+       graphics::Menu<int> mainMenu;
 
 };