CGeneralTextHandler.h 520 B

1234567891011121314151617181920
  1. #ifndef CGENERALTEXTHANDLER_H
  2. #define CGENERALTEXTHANDLER_H
  3. #include "../global.h"
  4. #include <string>
  5. #include <vector>
  6. DLL_EXPORT void loadToIt(std::string &dest, std::string &src, int &iter, int mode);
  7. class CGeneralTextHandler //Handles general texts
  8. {
  9. public:
  10. std::vector<std::string> allTexts;
  11. std::vector<std::string> arraytxt;
  12. std::vector<std::string> primarySkillNames;
  13. std::vector<std::string> jktexts;
  14. std::vector<std::string> heroscrn;
  15. void load();
  16. };
  17. #endif //CGENERALTEXTHANDLER_H