00001 00002 #ifndef RCHECKERS_H 00003 #define RCHECKERS_H 00004 00005 #include "checkers.h" 00006 00007 00008 class RCheckers:public Checkers 00009 { 00010 public: 00011 RCheckers(int skill):Checkers(skill){}; 00012 bool go1(int,int); 00013 00014 bool checkCapture1(); 00015 bool checkCapture2(); 00016 00017 private: 00018 void kingMove2(int,int &); 00019 00020 bool manCapture1(int,int,bool &); 00021 bool kingCapture1(int,int,bool &); 00022 00023 bool manCapture2(int,int &); 00024 bool kingCapture2(int,int,int &); 00025 00026 }; 00027 00028 #endif
1.4.2