Initial commit on develop branch
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
#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);
|
||||
};
|
||||
Reference in New Issue
Block a user