Commit 27df24df authored by CRESCENCE Cassandre's avatar CRESCENCE Cassandre

Upload New File

parent 7947fda7
/*
* 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 Tree {
ArrayList<Node> tree;
//getter
public ArrayList<Node> getTree(){
return tree;
}
//setter
public void setTree( ArrayList<Node> tree){
this.tree = tree;
}
}
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