aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.cpp.bck
blob: 2fd9be2f4282d62bb4aad316ded70f88bb857c0e (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: This is the main file for the chess_ai

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

 */

#include "chess_ai.hpp"
#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;
}