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.
tdegames/kpat/kings.h

24 lines
337 B

#ifndef _KINGS_H_
#define _KINGS_H_
#include "freecell.h"
class Pile;
class Deck;
class TDEMainWindow;
class Kings : public FreecellBase {
Q_OBJECT
public:
Kings( TDEMainWindow* parent=0, const char* name=0);
virtual bool isGameLost() const;
public slots:
virtual void deal();
virtual void demo();
};
#endif