refactor: deleted now useless class PauseHandler

This commit is contained in:
Yannik Bretschneider 2021-06-02 17:52:20 +02:00
parent d27bc6326c
commit 302fc5246d
1 changed files with 0 additions and 23 deletions

View File

@ -1,23 +0,0 @@
package uulm.teamname.marvelous.server.lobby;
public class PauseHandler {
private boolean paused;
public PauseHandler(){
paused = false;
}
public void start() {
if(!paused)
paused = true;
}
public void stop() {
if(paused)
paused = false;
}
public boolean isPaused() {
return paused;
}
}