summaryrefslogtreecommitdiff
path: root/noncore/games/kcheckers/checkers.h
Unidiff
Diffstat (limited to 'noncore/games/kcheckers/checkers.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/games/kcheckers/checkers.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/noncore/games/kcheckers/checkers.h b/noncore/games/kcheckers/checkers.h
index bd2be08..2592fb1 100644
--- a/noncore/games/kcheckers/checkers.h
+++ b/noncore/games/kcheckers/checkers.h
@@ -26,23 +26,23 @@ class Checkers
26 bool checkMove2(); 26 bool checkMove2();
27 27
28 virtual bool checkCapture1()=0; 28 virtual bool checkCapture1()=0;
29 virtual bool checkCapture2()=0; 29 virtual bool checkCapture2()=0;
30 30
31 void setLevel(int i) {levelmax=i;}; 31 void setLevel(int i) {levelmax=i;};
32 int getBoard(int i) {return board[i];}; 32
33 int board[54];
33 34
34 protected: 35 protected:
35 int level; // Current level 36 int level; // Current level
36 int levelmax; // Maximum level 37 int levelmax; // Maximum level
37 38
38 int turn(); 39 int turn();
39 void turn(int &,bool capture=false); 40 void turn(int &,bool capture=false);
40 41
41 int to; 42 int to;
42 int board[54];
43 int bestboard[54]; 43 int bestboard[54];
44 int bestcounter; 44 int bestcounter;
45 45
46 virtual void kingMove2(int,int &)=0; 46 virtual void kingMove2(int,int &)=0;
47 47
48 virtual bool manCapture2(int,int &)=0; 48 virtual bool manCapture2(int,int &)=0;