#ifndef __MINMAXNODES_H__
#define __MINMAXNODES_H__

#define VERY_LARGE 1000
#define VERY_SMALL -1000

class Node
{
  public:
    Node(Node * _parent);
    ~Node();
    unsigned long xLocation;
    unsigned long oLocation;
    int minScore;
    int maxScore;
    int complete;
    Node * parent;
    Node * children[9];
};



#endif
