This repository has been archived on 2025-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
breakthroughpine64backup/test.cpp

16 lines
179 B
C++
Raw Normal View History

2015-10-27 10:40:55 -05:00
#include "Board.h"
2015-10-25 16:43:27 -05:00
#include "Engine.h"
2015-10-19 15:56:21 -05:00
using namespace std;
int main()
{
2015-10-27 08:38:25 -05:00
//board testing
Board b;
2015-10-27 11:51:37 -05:00
cout << b.boardToString();
2015-10-27 08:38:25 -05:00
//engine testing
2015-10-27 11:31:44 -05:00
Engine e;
e.startGame();
2015-10-19 15:56:21 -05:00
}