Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.31 KB | None | 0 0
  1. #ifndef BITREE_H
  2. #define BITREE_H
  3. #include <iostream>
  4. using namespace std;
  5.  
  6. class Chess
  7. {
  8. public:
  9.     Chess();
  10.     bool Initialize();
  11.     void PrintBoard();
  12.     void Move(int x1, int y1, int x2, int y2);
  13. private:
  14.     char Board[8][8];
  15.     bool CanItMoveThere(int x1, int y1, int x2, int y2);
  16. };
  17.  
  18.  
  19.  
  20.  
  21. #endif //!BITREE_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement