Regions/src/regions/Directory.java
BuildTools 744d206a6a started work on Editor, and other changes
switched to DataInputStream-based ‘From Bytes’ methods, instead of
byte[] array-based.
2017-01-11 14:08:08 -05:00

19 lines
405 B
Java

package regions;
import java.util.List;
public abstract class Directory
{
String name;
public final Directory parent;
public final List<Directory> children;
public final List<Tree> trees;
public Directory(String name, Directory parent, List<Directory> children, List<Tree> trees)
{
this.name = name;
this.parent = parent;
this.children = children;
this.trees = trees;
}
}