public class treeNode { int sBoardPtr; /* Index into sboard and sballs */ int laneNumber; int accScore; int whoseTurn; boolean done; int firstMove; int nextNode; int numMoves; int step[]; int score[]; public treeNode() { step = new int[10]; score = new int[10]; } }