mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-26 08:41:13 +02:00
cc7be20b07
Because of really huge amount of modifications here I've probably missed some minor stuff. I doubt if it's still compatible with gcc - some changes should be reapplied.
21 lines
522 B
C++
21 lines
522 B
C++
#ifndef CGENERALTEXTHANDLER_H
|
|
#define CGENERALTEXTHANDLER_H
|
|
#include "../global.h"
|
|
#include <string>
|
|
#include <vector>
|
|
DLL_EXPORT void loadToIt(std::string &dest, std::string &src, int &iter, int mode);
|
|
class CGeneralTextHandler //Handles general texts
|
|
{
|
|
public:
|
|
std::vector<std::string> allTexts;
|
|
|
|
std::vector<std::string> arraytxt;
|
|
std::vector<std::string> primarySkillNames;
|
|
std::vector<std::string> jktexts;
|
|
std::vector<std::string> heroscrn;
|
|
void load();
|
|
};
|
|
|
|
|
|
#endif //CGENERALTEXTHANDLER_H
|