()
| 30 | } |
| 31 | |
| 32 | public static void renderAll() { |
| 33 | synchronized (LOCK) { |
| 34 | for (int activeOverlaysSize = activeOverlays.length, i = activeOverlaysSize - 1; i >= 0; i--) { |
| 35 | Overlay activeOverlay = activeOverlays[i]; |
| 36 | if (activeOverlay == null) |
| 37 | continue; |
| 38 | activeOverlay.render(); |
| 39 | } |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | @Override |
| 44 | public void displayMessage(String title, String subtitle) { |