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
333 B
24 lines
333 B
#ifndef _KINGS_H_
|
|
#define _KINGS_H_
|
|
|
|
#include "freecell.h"
|
|
|
|
class Pile;
|
|
class Deck;
|
|
class KMainWindow;
|
|
|
|
class Kings : public FreecellBase {
|
|
Q_OBJECT
|
|
|
|
|
|
public:
|
|
Kings( KMainWindow* parent=0, const char* name=0);
|
|
virtual bool isGameLost() const;
|
|
|
|
public slots:
|
|
virtual void deal();
|
|
virtual void demo();
|
|
};
|
|
|
|
#endif
|