mirror of
https://github.com/vcmi/vcmi.git
synced 2025-01-26 03:52:01 +02:00
6ad729148e
(don't try to compile this revision)
20 lines
520 B
C++
20 lines
520 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
|