X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fbattle%2FResources.h;h=1500378ab75b0b370d391d352c7ff34310c61170;hb=eb2ad5ffd08128d31af32f3929a3295fcfa251e9;hp=5ef036fd715010553e3e4e7090a0f44c3b67a5ce;hpb=2a1d9169e1f6c2dfe0f93ed40d5fb68d3da342af;p=l2e.git diff --git a/src/battle/Resources.h b/src/battle/Resources.h index 5ef036f..1500378 100644 --- a/src/battle/Resources.h +++ b/src/battle/Resources.h @@ -1,16 +1,16 @@ -/* - * Resources.h - * - * Created on: Aug 8, 2012 - * Author: holy - */ - #ifndef BATTLE_RESOURCES_H_ #define BATTLE_RESOURCES_H_ -#include "../common/fwd.h" +namespace graphics { + class Animation; + class Font; + class Frame; + class Gauge; + struct MenuProperties; + class Sprite; +} + #include "../graphics/Color.h" -#include "../graphics/fwd.h" #include "../graphics/Menu.h" #include @@ -19,6 +19,8 @@ namespace battle { struct Resources { + static const int TYPE_ID = 201; + graphics::Sprite *swapCursor; graphics::Sprite *moveIcons; graphics::Sprite *attackIcons; @@ -52,7 +54,6 @@ struct Resources { const char *spellMenuHeadline; graphics::MenuProperties *spellMenuProperties; - common::Inventory *inventory; const char *itemMenuHeadline; graphics::MenuProperties *itemMenuProperties; @@ -97,4 +98,4 @@ struct Resources { } -#endif /* BATTLE_RESOURCES_H_ */ +#endif