X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;ds=sidebyside;f=src%2Fmenu%2FResources.h;h=5b581e6bd9dc97ba3c9db8104892b4b52e90f031;hb=7f0a586b8238c7093a8942ff5b5c4122edd386fc;hp=ec1fdf4741ddd9a8409c5d638d421d12c820dc80;hpb=cc3d698b8c1ad09d7a3f9e3f28bc84e0ac1735ea;p=l2e.git diff --git a/src/menu/Resources.h b/src/menu/Resources.h index ec1fdf4..5b581e6 100644 --- a/src/menu/Resources.h +++ b/src/menu/Resources.h @@ -7,15 +7,14 @@ namespace menu { struct Resources { + static const int TYPE_ID = 701; + graphics::Texture *menubg; graphics::Font *normalFont; graphics::Font *inactiveFont; graphics::Font *statusFont; - graphics::Sprite *menuCursor; - graphics::Sprite *menuActiveCursor; - graphics::Sprite *statusLabels; graphics::Frame *statusFrame; @@ -47,7 +46,9 @@ struct Resources { const char *gutLabel; const char *mgrLabel; + const char *hpLabel; const char *ipLabel; + const char *levelLabel; const char *experienceLabel; const char *nextLevelLabel; @@ -89,8 +90,26 @@ struct Resources { graphics::MenuProperties *scenarioMenuProperties; const char *scenarioMenuHeadline; + graphics::Texture *capsulebg; + + graphics::MenuProperties *capsuleMenuProperties; + + const char *capsuleFeedLabel; + const char *capsuleChangeLabel; + const char *capsuleNameLabel; + const char *capsuleClassLabel; + const char *capsuleAlignmentLabel; + const char *capsuleTribeLabel; + const char *capsuleAttack1Label; + const char *capsuleAttack2Label; + const char *capsuleAttack3Label; + const char *capsuleNoAttackText; + Resources(); + static void CreateTypeDescription(); + static void Construct(void *); + }; }