]> git.localhorst.tv Git - l2e.git/blobdiff - src/battle/Resources.h
put victory strings in battle resources
[l2e.git] / src / battle / Resources.h
index 72f3afb0ce193b96769b08f3fd0abfe05807f4e0..0a8a1e8db444a618be0cc43a37284f965245051e 100644 (file)
@@ -1,9 +1,16 @@
 #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 <SDL.h>
@@ -81,6 +88,23 @@ struct Resources {
 
        graphics::Color heroesBgColor;
 
+       const char *victoryGetsText;
+       const char *victoryExpText;
+       const char *victoryGoldText;
+       const char *victoryLevelUpText;
+       const char *victoryUpgradeText;
+       const char *victoryNextLevelText;
+
+       const char *victoryMHPText;
+       const char *victoryMMPText;
+       const char *victoryATPText;
+       const char *victoryDFPText;
+       const char *victorySTRText;
+       const char *victoryAGLText;
+       const char *victoryINTText;
+       const char *victoryGUTText;
+       const char *victoryMGRText;
+
 
        Resources();
 
@@ -91,4 +115,4 @@ struct Resources {
 
 }
 
-#endif /* BATTLE_RESOURCES_H_ */
+#endif