14 lines
152 B
C
14 lines
152 B
C
![]() |
#pragma once
|
||
|
|
||
|
#include "Board.h"
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
class Engine {
|
||
|
Board b;
|
||
|
|
||
|
public:
|
||
|
Engine();
|
||
|
void startGame();
|
||
|
void easyAI();
|
||
|
};
|