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

34 lines
462 B
C++
Raw Normal View History

2015-10-27 21:48:22 -05:00
#include "Engine.h"
using namespace std;
int main()
{
2015-10-29 13:06:15 -05:00
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;
2015-10-29 13:06:15 -05:00
//Engine e;
//e.startGame();
2015-10-27 21:48:22 -05:00
}