X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fbattle%2FResources.h;h=1e86f64ab160b1a984797801486015ebc6a3945e;hb=4170813213bafe6f4a01a79bf42308ddb7f3c545;hp=c0fb48cf159bec8ca258ab68f8eed59b37a8fcea;hpb=3c72a71fbf6de96333a641051a20c6bf8b3a5df3;p=l2e.git diff --git a/src/battle/Resources.h b/src/battle/Resources.h index c0fb48c..1e86f64 100644 --- a/src/battle/Resources.h +++ b/src/battle/Resources.h @@ -13,6 +13,7 @@ namespace common { class Inventory; class Item; + class Spell; } namespace graphics { class Font; @@ -50,14 +51,22 @@ struct Resources { graphics::Sprite *itemTargetCursor; const char *spellMenuHeadline; - graphics::Menu spellMenuPrototype; + graphics::Menu spellMenuPrototype; common::Inventory *inventory; const char *itemMenuHeadline; graphics::Menu itemMenuPrototype; const char *ikariMenuHeadline; - graphics::Menu ikariMenuPrototype; + graphics::Menu ikariMenuPrototype; + const char *noEquipmentText; + + graphics::Sprite *weaponMenuIcon; + graphics::Sprite *armorMenuIcon; + graphics::Sprite *shieldMenuIcon; + graphics::Sprite *helmetMenuIcon; + graphics::Sprite *ringMenuIcon; + graphics::Sprite *jewelMenuIcon; Resources() @@ -89,6 +98,14 @@ struct Resources { , inventory(0) , itemMenuHeadline("") , ikariMenuHeadline("") + , noEquipmentText("") + + , weaponMenuIcon(0) + , armorMenuIcon(0) + , shieldMenuIcon(0) + , helmetMenuIcon(0) + , ringMenuIcon(0) + , jewelMenuIcon(0) { } };