()
| 45 | long intervalIn = 0; |
| 46 | Object eventLock = new Object(); |
| 47 | |
| 48 | protected RunLoop() { |
| 49 | mainThread = Thread.currentThread(); |
| 50 | Runtime.getRuntime() |
| 51 | .addShutdownHook(shutdownThread = new Thread(() -> exit())); |
| 52 | } |
| 53 | |
| 54 | public static long getTick() { |