File Handling & new class

This commit is contained in:
2022-05-19 14:31:57 +02:00
parent 0f00467962
commit bfe88db9c4
2 changed files with 55 additions and 7 deletions

View File

@ -0,0 +1,16 @@
package application;
import java.util.ArrayList;
public class Graph {
private ArrayList<ArrayList<Graph>> values;
public Graph() {
values = new ArrayList<ArrayList<Graph>>();
}
public boolean receiveValues() {
return true;
}
}