17 lines
261 B
C++
17 lines
261 B
C++
#pragma once
|
|
|
|
#include "Board.h"
|
|
|
|
using namespace std;
|
|
|
|
class Engine {
|
|
Board* b;
|
|
|
|
public:
|
|
Engine();
|
|
Board* getBoard() { return b; }
|
|
void startGame();
|
|
void easyAI();
|
|
void AI(int depth);
|
|
moves minMax(Board* temp, moves m, int c, int r);
|
|
};
|