blob: 21c81db04d1535ef511e204def349b451f3dacda (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#ifndef BASE_INTER_H
#define BASE_INTER_H
class TQWidget;
class BaseInterface
{
public:
BaseInterface() {}
virtual ~BaseInterface() {}
virtual void _start() = 0;
virtual void _pause() = 0;
virtual bool _isPaused() const = 0;
void showHighscores(TQWidget *tqparent);
protected:
virtual void _showHighscores(TQWidget *tqparent);
};
#endif
|