Actualiser src/backend/Simulator.java

This commit is contained in:
Balthazar SQUINABOL 2024-04-10 16:29:32 +02:00
parent ff0ad5968c
commit 3598d99e4f
1 changed files with 1 additions and 14 deletions

View File

@ -226,19 +226,6 @@ public class Simulator extends Thread {
int currentCellValue = getCell(x, y);
// set cell value to !currentCellValue
}
public void countAround(int x, int y) {
//enableLogs
//getCell
//if loopingBorder TRUE, border count as living.
if (loopingBorder == true){
}
else {
}
}
/**
*
@ -302,7 +289,7 @@ public class Simulator extends Thread {
public boolean isLoopingBorder() {
//TODO : complete method with proper return
return false;
return loopingBorder;
}
public void toggleLoopingBorder() {