16 lines
192 B
C++
16 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);
|
|
};
|