X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;ds=sidebyside;f=src%2Fmenu%2FPartyMenu.h;h=5baaf69ac9635c8219e389fb380ed8a160830e77;hb=aedf4ae020e3c811341df79ceae63ca56fb7ce83;hp=2172bfccc536e40bb339a052322857d21267f630;hpb=57a75f13e98f4b5d311c2d3b9d9ff637120c5ee2;p=l2e.git diff --git a/src/menu/PartyMenu.h b/src/menu/PartyMenu.h index 2172bfc..5baaf69 100644 --- a/src/menu/PartyMenu.h +++ b/src/menu/PartyMenu.h @@ -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 &offset) const; + void RenderMenu(SDL_Surface *screen, const geometry::Vector &offset) const; + void RenderInfo(SDL_Surface *screen, const geometry::Vector &offset) const; private: HeroStatus status[4]; common::GameConfig *game; + graphics::Menu mainMenu; };