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