summaryrefslogtreecommitdiff
path: root/noncore/games/oyatzee/oyatzee.h
Side-by-side diff
Diffstat (limited to 'noncore/games/oyatzee/oyatzee.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/games/oyatzee/oyatzee.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/noncore/games/oyatzee/oyatzee.h b/noncore/games/oyatzee/oyatzee.h
index 01ab36d..65a18fc 100644
--- a/noncore/games/oyatzee/oyatzee.h
+++ b/noncore/games/oyatzee/oyatzee.h
@@ -16,2 +16,3 @@ class DiceWidget;
typedef QList<Dice> dicesList;
+typedef QValueList<int> QValueListInt;
@@ -27,2 +28,3 @@ class OYatzee : public QMainWindow {
+ QValueListInt posibilities;
@@ -30,2 +32,17 @@ class OYatzee : public QMainWindow {
void setRoundsNumber( const int num );
+
+ enum {
+ Ones=1,
+ Twos = 2,
+ Threes = 3,
+ Fours = 4,
+ Fives = 5,
+ Sixes = 6,
+ ThreeOfAKind = 7, //12444
+ FourOfAKind = 8, //14444
+ FullHouse = 9, //22555
+ SStraight = 10, //13456
+ LStraight = 11, //12345
+ Yatzee = 12, //55555
+ Chance = 13};
@@ -40,2 +57,4 @@ class OYatzee : public QMainWindow {
void detectPosibilities();
+ void displayPossibilites();
+
};