mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-28 08:48:48 +02:00
8421c901a4
* started making an infobar
13 lines
227 B
C++
13 lines
227 B
C++
#ifndef CCONSOLEHANDLER_H
|
|
#define CCONSOLEHANDLER_H
|
|
class CCallback;
|
|
class CConsoleHandler
|
|
{
|
|
CCallback * cb;
|
|
public:
|
|
void runConsole();
|
|
|
|
friend int _tmain(int argc, _TCHAR* argv[]);
|
|
};
|
|
|
|
#endif //CCONSOLEHANDLER_H
|