]> git.localhorst.tv Git - l2e.git/blobdiff - src/menu/PartyMenu.h
added party main menu stub
[l2e.git] / src / menu / PartyMenu.h
index ee84239d9a19600c2d6fb313eb89f3aeaccc75e9..5baaf69ac9635c8219e389fb380ed8a160830e77 100644 (file)
@@ -8,9 +8,12 @@
 #ifndef MENU_PARTYMENU_H_
 #define MENU_PARTYMENU_H_
 
-#include "Resources.h"
+#include "fwd.h"
+#include "HeroStatus.h"
 #include "../app/State.h"
-#include "../common/GameConfig.h"
+#include "../common/fwd.h"
+#include "../geometry/Vector.h"
+#include "../graphics/Menu.h"
 
 namespace menu {
 
@@ -38,8 +41,14 @@ 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;
 
 };