diff --git a/GameEngine.h b/GameEngine.h deleted file mode 100755 index ec74850..0000000 --- a/GameEngine.h +++ /dev/null @@ -1,34 +0,0 @@ -#pragma once - -#include -#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 input) -{ - cout<<"\n\nList of possible Moves:"<