You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
368 B
24 lines
368 B
#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 *parent);
|
|
|
|
protected:
|
|
virtual void _showHighscores(TQWidget *parent);
|
|
};
|
|
|
|
#endif
|