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
Brandon Jackson 7733193a4b Updated startGame to take an int as an argument
This is necessary because the server requires a port number to launch.
2015-10-27 21:28:37 -05:00

16 lines
221 B
C++
Executable file

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