diff options
Diffstat (limited to 'kpat/yukon.h')
-rw-r--r-- | kpat/yukon.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/kpat/yukon.h b/kpat/yukon.h new file mode 100644 index 00000000..9b407ac3 --- /dev/null +++ b/kpat/yukon.h @@ -0,0 +1,23 @@ +#ifndef YUKON_H +#define YUKON_H + +#include "dealer.h" + +class Yukon : public Dealer { + Q_OBJECT + +public: + Yukon( KMainWindow* parent=0, const char* name=0); + virtual bool isGameLost() const; + +public slots: + void deal(); + virtual void restart(); + +private: + Pile* store[7]; + Pile* target[4]; + Deck *deck; +}; + +#endif |