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.
25 lines
338 B
25 lines
338 B
#ifndef YUKON_H
|
|
#define YUKON_H
|
|
|
|
#include "dealer.h"
|
|
|
|
class Yukon : public Dealer {
|
|
Q_OBJECT
|
|
|
|
|
|
public:
|
|
Yukon( TDEMainWindow* 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
|