]> git.localhorst.tv Git - l2e.git/blobdiff - src/menu/PartyMenu.h
added hero status tags in party menu
[l2e.git] / src / menu / PartyMenu.h
index ee84239d9a19600c2d6fb313eb89f3aeaccc75e9..2172bfccc536e40bb339a052322857d21267f630 100644 (file)
@@ -8,9 +8,11 @@
 #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"
 
 namespace menu {
 
@@ -38,7 +40,10 @@ private:
 
        virtual void OnResize(int width, int height);
 
+       void RenderHeros(SDL_Surface *screen, const geometry::Vector<int> &offset) const;
+
 private:
+       HeroStatus status[4];
        common::GameConfig *game;
 
 };