diff --git a/Engine.h b/Engine.h new file mode 100644 index 0000000..66f8843 --- /dev/null +++ b/Engine.h @@ -0,0 +1,16 @@ +#pragma once + +#include "Board.h" + +using namespace std; + +class Engine { + Board* b; + +public: + Engine(); + void startGame(int port); + void easyAI(); + void AI(); + moves minMax(moves m, int c); +};