Create Engine.h

This commit is contained in:
Brandon Jackson 2015-10-27 21:46:33 -05:00
parent 78f7580de0
commit 1da55a4953

16
Engine.h Normal file
View file

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