2007-06-12 21:17:33 +03:00
|
|
|
#ifndef CPREGAMETEXTHANDLER_H
|
|
|
|
#define CPREGAMETEXTHANDLER_H
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
class CPreGameTextHandler //handles pre - game texts
|
|
|
|
{
|
|
|
|
public:
|
2007-06-22 16:50:16 +03:00
|
|
|
|
2008-02-06 07:12:59 +02:00
|
|
|
std::vector<std::pair<std::string,std::string> > zelp;
|
2007-06-27 23:17:58 +03:00
|
|
|
std::string lossCondtions[4];
|
|
|
|
std::string victoryConditions[14];
|
|
|
|
|
2007-06-13 17:02:43 +03:00
|
|
|
std::string getTitle(std::string text);
|
|
|
|
std::string getDescr(std::string text);
|
2007-08-06 07:03:34 +03:00
|
|
|
|
2007-06-12 21:17:33 +03:00
|
|
|
void loadTexts();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif //CPREGAMETEXTHANDLER_H
|