1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-30 08:57:00 +02:00
vcmi/hch/CGeneralTextHandler.h

23 lines
564 B
C
Raw Normal View History

#ifndef CGENERALTEXTHANDLER_H
#define CGENERALTEXTHANDLER_H
#include "../global.h"
#include <string>
2007-07-09 14:40:39 +03:00
#include <vector>
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
{
public:
2007-07-09 14:40:39 +03:00
std::vector<std::string> allTexts;
std::vector<std::string> arraytxt;
2008-01-13 18:24:24 +02:00
std::vector<std::string> primarySkillNames;
std::vector<std::string> jktexts;
2008-01-31 14:10:59 +02:00
std::vector<std::string> heroscrn;
std::vector<std::string> artifEvents;
void load();
};
#endif //CGENERALTEXTHANDLER_H