Files
Ramtin_repo/Othello/codes/Structures/Move.h
T

16 lines
213 B
C++

#pragma once
#include <string>
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);
};