From ad8b15bdb7300702bc4582fe81b30374d9b59022 Mon Sep 17 00:00:00 2001 From: jason riggs Date: Thu, 14 Mar 2019 17:51:03 +0000 Subject: [PATCH] change --- Error.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/Error.h b/Error.h index e69de29..7c406be 100644 --- a/Error.h +++ b/Error.h @@ -0,0 +1,13 @@ +#ifndef ERROR_H +#define ERROR_H + +#include + +class Error { + public: + bool isValidAdjacent(int row, int col, char board[][8], char oppTurn); + bool isValidFlip(int row, int col, char board[][8], char playerTurn); + private: +}; + +#endif \ No newline at end of file -- GitLab