/* description: author: Yann Herklotz date created: DD-MM-YYYY */ #include "../include/chess_ai.hpp" #include using namespace std; using namespace chess_ai; int main(int argc, char** argv) { (void)argc; (void)argv; chess_board board(initial); board.print_board(); chess_piece piece(rook, white, 5, 3); board.set_piece(piece); board.print_board(); return 0; }