| 1 | package eu.the5zig.mod.util; |
| 2 | |
| 3 | public class Display { |
| 4 | |
| 5 | private static DisplayHandler handler; |
| 6 | |
| 7 | public static void init(DisplayHandler handler) { |
| 8 | Display.handler = handler; |
| 9 | } |
| 10 | |
| 11 | public static boolean isActive() { |
| 12 | return handler.isActive(); |
| 13 | } |
| 14 | |
| 15 | public interface DisplayHandler { |
| 16 | boolean isActive(); |
| 17 | } |
| 18 | |
| 19 | } |
nothing calls this directly
no outgoing calls
no test coverage detected