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.
|
#ifndef GAMESTATS_IMPL_H_
|
|
#define GAMESTATS_IMPL_H_
|
|
|
|
#include "gamestats.h"
|
|
|
|
class GameStatsImpl : public GameStats
|
|
{
|
|
public:
|
|
GameStatsImpl(TQWidget* aParent, const char* aname);
|
|
|
|
virtual void setGameType(int i);
|
|
virtual void showGameType(int i);
|
|
};
|
|
|
|
#endif
|
|
|