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

  description:

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

 */

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

#include <iostream>

using namespace std;
using namespace chess_ai;

int main(int argc, char** argv) {
    (void)argc;
    (void)argv;
    
    return 0;
}