This commit is contained in:
Balthazar SQUINABOL 2024-04-29 16:29:10 +02:00
commit bc5dbc477a
1 changed files with 8 additions and 2 deletions

View File

@ -448,9 +448,15 @@ public class Simulator extends Thread {
* @return String representation of click action
*/
public String clickActionName() {
// TODO : initially return "sheep" or "cell"
// TODO-COMPLETE : initially return "sheep" or "cell"
// depending on clickActionFlag
return "";
if (clickActionFlag){
return "cell";
}
else {
return "sheep";
}
}
}