blob: be6733de5c973f8b0a03f3832da00c10aa5c898a (
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
25
26
27
28
29
30
|
#ifndef SIMON_H
#define SIMON_H
#include "dealer.h"
class Simon : public Dealer {
Q_OBJECT
public:
Simon( TDEMainWindow* parent=0, const char* name=0);
public slots:
void deal();
virtual void restart();
virtual bool isGameLost() const;
protected:
virtual bool checkAdd ( int checkIndex, const Pile *c1, const CardList& c2) const;
virtual bool checkPrefering( int checkIndex, const Pile *c1, const CardList& c2) const;
virtual bool checkRemove( int checkIndex, const Pile *c1, const Card *c) const;
private:
Pile* store[10];
Pile* target[4];
Deck *deck;
};
#endif
|