(int milliseconds, Runnable inputUpdater)
| 39 | } |
| 40 | |
| 41 | public static ScheduledFuture<?> delay(int milliseconds, Runnable inputUpdater) { |
| 42 | return getScheduledPool().schedule(inputUpdater, milliseconds, TimeUnit.MILLISECONDS); |
| 43 | } |
| 44 | |
| 45 | public static boolean isGameThread() { |
| 46 | return Thread.currentThread().getName().startsWith("Game"); |
no test coverage detected