summaryrefslogtreecommitdiff
path: root/noncore/games/kcheckers/rcheckers.h
Unidiff
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