mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-30 08:57:00 +02:00
14 lines
324 B
C
14 lines
324 B
C
|
#ifndef CPREGAMETEXTHANDLER_H
|
||
|
#define CPREGAMETEXTHANDLER_H
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
class CPreGameTextHandler //handles pre - game texts
|
||
|
{
|
||
|
public:
|
||
|
std::string mainNewGame, mainLoadGame, mainHighScores, mainCredits, mainQuit; //right - click texts in main menu
|
||
|
void loadTexts();
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif //CPREGAMETEXTHANDLER_H
|