17 lines
192 B
C
17 lines
192 B
C
![]() |
#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);
|
||
|
};
|