mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-26 22:57:00 +02:00
6613955463
* if hero doesn't have a spell book, he can buy one in a mage guild * improvements in closing * fixed crash on picking artifact * added event message when picking artifact * fixed problems with disappearing pikemen * InfoWindow will be properly centered * hero portraits again visible in PreGame * fixed problems with handling Pandora's Box * support for Campfires * minor changes
23 lines
564 B
C++
23 lines
564 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;
|
|
std::vector<std::string> artifEvents;
|
|
|
|
void load();
|
|
};
|
|
|
|
|
|
#endif //CGENERALTEXTHANDLER_H
|