Commit 3f1ee451 authored by CRESCENCE Cassandre's avatar CRESCENCE Cassandre

Upload New File

parent 97766a27
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package tictactoecodingame;
import java.util.ArrayList;
/**
*
* @author cassa
*/
public class Node {
State state;
Node parent;
ArrayList<Coup> childArray;
//getters
public State getState(){
return state;
}
public Node getParent(){
return parent;
}
public ArrayList<Coup> getChildArray(){
return childArray;
}
//setters
public void setState(State state){
this.state= state;
}
public void setParent(Node parent){
this.parent = parent;
}
public void setChildArray( ArrayList<Coup> childArray){
this.childArray = childArray;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment