This repository has been archived on 2025-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
breakthroughpine64backup/Engine.h
Alexander Huddleston d1ab8dd5fa Edited makefile.
2015-10-27 22:56:10 -05:00

17 lines
252 B
C++
Executable file

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