#pragma once #include "Board.h" using namespace std; class Engine { Board b; public: Engine(); void startGame(); void easyAI(); };