(Runnable r)
| 193 | public abstract void tick(); |
| 194 | |
| 195 | public void whileSuspended(Runnable r) { |
| 196 | whileSuspended(()->{ |
| 197 | r.run(); |
| 198 | return null; |
| 199 | }, null); |
| 200 | } |
| 201 | |
| 202 | public void whilePaused(Runnable r) { |
| 203 | whilePaused(()->{ |
no test coverage detected