2 dimension array list

This commit is contained in:
l.dupuis-burtin 2024-04-10 17:24:40 +02:00
parent 5aee7b03e7
commit 2d83688930
1 changed files with 3 additions and 3 deletions

View File

@ -18,7 +18,7 @@ public class Simulator extends Thread {
private ArrayList<Integer> fieldBirthValues; private ArrayList<Integer> fieldBirthValues;
private ArrayList<Agent> agents; private ArrayList<Agent> agents;
private ArrayList<Cell> cells; private ArrayList<ArrayList<Cell>> cells;
private boolean stopFlag; private boolean stopFlag;
private boolean pauseFlag; private boolean pauseFlag;
private boolean loopingBorder; private boolean loopingBorder;
@ -33,7 +33,7 @@ public class Simulator extends Thread {
pauseFlag=false; pauseFlag=false;
loopingBorder=false; loopingBorder=false;
clickActionFlag=false; clickActionFlag=false;
cells = new ArrayList<Cell>(); cells = new ArrayList<ArrayList<Cell>>();
agents = new ArrayList<Agent>(); agents = new ArrayList<Agent>();
fieldBirthValues = new ArrayList<Integer>(); fieldBirthValues = new ArrayList<Integer>();
fieldSurviveValues = new ArrayList<Integer>(); fieldSurviveValues = new ArrayList<Integer>();
@ -257,7 +257,7 @@ public class Simulator extends Thread {
public boolean isLoopingBorder() { public boolean isLoopingBorder() {
//TODO : complete method with proper return //TODO : complete method with proper return
return false; return loopingBorder;
} }
public void toggleLoopingBorder() { public void toggleLoopingBorder() {