16 lines
No EOL
203 B
C++
Executable file
16 lines
No EOL
203 B
C++
Executable file
#pragma once
|
|
|
|
#include "Board.h"
|
|
|
|
using namespace std;
|
|
|
|
class Engine {
|
|
Board* b;
|
|
|
|
public:
|
|
Engine();
|
|
void startGame();
|
|
void easyAI();
|
|
void AI();
|
|
void minMax(Board* temp, moves m);
|
|
}; |