Create Engine.h
This commit is contained in:
parent
78f7580de0
commit
1da55a4953
1 changed files with 16 additions and 0 deletions
16
Engine.h
Normal file
16
Engine.h
Normal 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);
|
||||||
|
};
|
Reference in a new issue