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
2015-10-29 13:06:15 -05:00

33 lines
462 B
C++

#include "Engine.h"
using namespace std;
int main()
{
MNode* a = new MNode();
MNode* b = new MNode();
MNode* c = new MNode();
MNode* d = new MNode();
a->setMMVal(1);
b->setMMVal(3);
c->setMMVal(87);
d->setMMVal(-1);
a->addChild(b);
a->addChild(c);
b->addChild(d);
printTree(0, a);
cout << "\n";
printTree(0, b);
cout << "\n";
printTree(0, c);
cout << "\n";
printTree(0, d);
cout << "\n";
//Board b;
//Engine e;
//e.startGame();
}