clickActionName

This commit is contained in:
titou 2024-05-27 18:02:56 +02:00
parent 40af2b39bd
commit 1bdf626503
1 changed files with 3 additions and 2 deletions

View File

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