togglePause

This commit is contained in:
Balthazar SQUINABOL 2024-04-03 17:38:04 +02:00
parent 3a13bb1ae1
commit d05f4211f1
1 changed files with 2 additions and 1 deletions

View File

@ -140,7 +140,8 @@ public class Simulator extends Thread {
* method called when clicking pause button
*/
public void togglePause() {
// TODO : actually toggle the corresponding flag
// TODO-COMPLETE : actually toggle the corresponding flag
pauseFlag = !pauseFlag;
}
/**