This commit is contained in:
Balthazar SQUINABOL 2024-05-08 11:03:50 +02:00
commit 24bd3ab6a5
1 changed files with 6 additions and 1 deletions

View File

@ -450,7 +450,12 @@ public class Simulator extends Thread {
public String clickActionName() {
// TODO : initially return "sheep" or "cell"
// depending on clickActionFlag
return "";
if (clickActionFlag){
return "cell";
}
else {
return "sheep";
}
}
}