Last TODO

This commit is contained in:
yoyom 2024-05-14 16:50:27 +02:00
parent 372411a056
commit 063937a5e0
1 changed files with 3 additions and 6 deletions

View File

@ -46,9 +46,8 @@ public class Simulator extends Thread {
//Default rule : Survive always, birth never //Default rule : Survive always, birth never
for(int i =0; i<9; i++) { //for(int i =0; i<9; i++) {
fieldSurviveValues.add(i); // fieldSurviveValues.add(i); }
}
} }
@ -399,9 +398,7 @@ public class Simulator extends Thread {
* @return String representation of click action * @return String representation of click action
*/ */
public String clickActionName() { public String clickActionName() {
// TODO : initially return "sheep" or "cell" return clickActionFlag ? "sheep" : "cell";
// depending on clickActionFlag
return "";
} }
} }