#pragma once #include struct Move { int x; int y; char color; public: Move(int x, int y, char color); Move(); std::string retrieveMove(); void loadMove(std::string move); };