#ifndef AIPLAYER_H #define AIPLAYER_H #include <vector> #include <string> using namespace std; class AIplayer { public:
AIplayer(); AIplayer(int difficulty) {this->difficulty = difficulty; } void move();
private:
int difficulty;
}; #endif