Advertisement
Guest User

Untitled

a guest
Dec 18th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. #pragma once
  2. #ifndef Knight_H
  3. #include "Piece.h"
  4. class Piece;
  5.  
  6. class Knight : public Piece {
  7. public:
  8. Knight(std::string location, std::string name);
  9. ~Knight();
  10.  
  11. virtual void eat(char* newLocation);
  12. virtual bool isLegal(char* newLocation);
  13.  
  14. };
  15. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement