summaryrefslogtreecommitdiffstats
path: root/kpat/yukon.h
blob: 8acb7195ed3b591eabee2e8d0aa2bea659dfe305 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#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