aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.cpp
blob: b41c9191ba69655e1c9242a706d88c2d93d6721f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*

  description:

  author: Yann Herklotz <ymherklotz@gmail.com>
  date created: DD-MM-YYYY

 */

#include "../include/chess_ai.hpp"

#include <iostream>

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;
}