/* * * author: Yann Herklotz * username: ymherklotz * email: ymherklotz@gmail.com * * ----------------------------------------------------------------------------- * * Main file that tests the chess ai * */ #include "chess_tester.hpp" #include "chess_piece.hpp" #include using namespace std; using namespace ymhChessAI; int main(int argc, char **argv) { cout << "Program name: " << argv[0] << endl; cout << "Arguments: " << argc - 1 << endl; cout << endl << "====== Executed Successfully ======" << endl; return 0; }