// // Created by hamac on 20.12.2024. // #ifndef PAWN_H #define PAWN_H // // Created by hamac on 19.12.2024. // #include #include #include "Chesspiece.h" class Pawn: public Chesspiece { private: /* fields */ bool firstMove = true; bool movedTwoFields = false; /* methods */ std::vector calcAvaibleMoves() override ; public: Pawn(char color, std::pair position); }; #endif //PAWN_H