Added clickActionName

This commit is contained in:
Guillaume LE CHARTIER 2024-04-29 15:49:51 +02:00
parent 25c7bab182
commit ab6949e5bb
1 changed files with 8 additions and 2 deletions

View File

@ -408,9 +408,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";
}
}
}