summaryrefslogtreecommitdiff
path: root/noncore/games/kcheckers/rcheckers.h
authorleseb <leseb>2002-06-11 16:25:06 (UTC)
committer leseb <leseb>2002-06-11 16:25:06 (UTC)
commit2cfbb2adc058b59140a14ba6bbfc057266fea0b8 (patch) (unidiff)
tree2dc8756a9d691cdfb46b537955453f46171ceeff /noncore/games/kcheckers/rcheckers.h
parentd709dd35dc07d4a204380354f00a89ceb4d1f845 (diff)
downloadopie-2cfbb2adc058b59140a14ba6bbfc057266fea0b8.zip
opie-2cfbb2adc058b59140a14ba6bbfc057266fea0b8.tar.gz
opie-2cfbb2adc058b59140a14ba6bbfc057266fea0b8.tar.bz2
Version 0.3 port
Diffstat (limited to 'noncore/games/kcheckers/rcheckers.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/games/kcheckers/rcheckers.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/games/kcheckers/rcheckers.h b/noncore/games/kcheckers/rcheckers.h
index d44bfd1..01913a5 100644
--- a/noncore/games/kcheckers/rcheckers.h
+++ b/noncore/games/kcheckers/rcheckers.h
@@ -1,28 +1,28 @@
1 1
2#ifndef RCHECKERS_H 2#ifndef RCHECKERS_H
3#define RCHECKERS_H 3#define RCHECKERS_H
4 4
5#include <checkers.h> 5#include "checkers.h"
6 6
7 7
8class RCheckers:public Checkers 8class RCheckers:public Checkers
9{ 9{
10 public: 10 public:
11 RCheckers(int skill):Checkers(skill){}; 11 RCheckers(int skill):Checkers(skill){};
12 bool go1(int,int); 12 bool go1(int,int);
13 13
14 bool checkCapture1(); 14 bool checkCapture1();
15 bool checkCapture2(); 15 bool checkCapture2();
16 16
17 private: 17 private:
18 void kingMove2(int,int &); 18 void kingMove2(int,int &);
19 19
20 bool manCapture1(int,int,bool &); 20 bool manCapture1(int,int,bool &);
21 bool kingCapture1(int,int,bool &); 21 bool kingCapture1(int,int,bool &);
22 22
23 bool manCapture2(int,int &); 23 bool manCapture2(int,int &);
24 bool kingCapture2(int,int,int &); 24 bool kingCapture2(int,int,int &);
25 25
26}; 26};
27 27
28#endif 28#endif