2007-07-08 17:28:08 +00:00
|
|
|
#ifndef CGENERALTEXTHANDLER_H
|
|
|
|
#define CGENERALTEXTHANDLER_H
|
2008-06-13 08:16:51 +00:00
|
|
|
#include "../global.h"
|
2007-07-08 17:28:08 +00:00
|
|
|
#include <string>
|
2007-07-09 11:40:39 +00:00
|
|
|
#include <vector>
|
2008-06-13 08:16:51 +00:00
|
|
|
DLL_EXPORT void loadToIt(std::string &dest, std::string &src, int &iter, int mode);
|
2007-07-09 11:40:39 +00:00
|
|
|
class CGeneralTextHandler //Handles general texts
|
2007-07-08 17:28:08 +00:00
|
|
|
{
|
|
|
|
public:
|
2007-07-09 11:40:39 +00:00
|
|
|
std::vector<std::string> allTexts;
|
2007-11-18 22:58:28 +00:00
|
|
|
|
|
|
|
std::vector<std::string> arraytxt;
|
2008-01-13 16:24:24 +00:00
|
|
|
std::vector<std::string> primarySkillNames;
|
2008-01-15 18:50:52 +00:00
|
|
|
std::vector<std::string> jktexts;
|
2008-01-31 12:10:59 +00:00
|
|
|
std::vector<std::string> heroscrn;
|
2008-08-25 10:25:16 +00:00
|
|
|
std::vector<std::string> artifEvents;
|
|
|
|
|
2007-07-08 17:28:08 +00:00
|
|
|
void load();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2008-08-02 15:08:03 +00:00
|
|
|
#endif //CGENERALTEXTHANDLER_H
|