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

17 lines
221 B
C
Raw Normal View History

2015-10-25 16:43:27 -05:00
#pragma once
#include "Board.h"
using namespace std;
class Engine {
2015-10-25 16:53:32 -05:00
Board* b;
2015-10-25 16:43:27 -05:00
public:
Engine();
void startGame(int port);
2015-10-25 16:43:27 -05:00
void easyAI();
2015-10-25 16:53:32 -05:00
void AI();
2015-10-27 21:19:24 -05:00
moves minMax(Board* temp, moves m, int c);
};