Delete GameEngine.h
This commit is contained in:
parent
ed598d0c8b
commit
8bfc70faff
1 changed files with 0 additions and 34 deletions
34
GameEngine.h
34
GameEngine.h
|
@ -1,34 +0,0 @@
|
||||||
#pragma once
|
|
||||||
|
|
||||||
#include <vector>
|
|
||||||
#include "Board.h"
|
|
||||||
|
|
||||||
using namespace std;
|
|
||||||
|
|
||||||
string myToUpper(string input);
|
|
||||||
|
|
||||||
struct moves
|
|
||||||
{
|
|
||||||
int row;
|
|
||||||
char column;
|
|
||||||
string moveType;
|
|
||||||
|
|
||||||
moves(int linea, int columna, string m)
|
|
||||||
{
|
|
||||||
row = linea;
|
|
||||||
column = columna;
|
|
||||||
moveType = m;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
void displayPossibleMoves(vector<moves> input)
|
|
||||||
{
|
|
||||||
cout<<"\n\nList of possible Moves:"<<endl;
|
|
||||||
for (int i = 0; i < input.size(); ++i)
|
|
||||||
{
|
|
||||||
cout<<"possible move: "<<input[i].row<<" "<<input[i].column<<" "<<input[i].moveType<<endl;
|
|
||||||
}
|
|
||||||
}
|
|
Reference in a new issue