(Window window)
| 76 | } |
| 77 | |
| 78 | static public void arrowRight(Window window) { |
| 79 | if (arrowRight == 0) arrowRight = loadResource("arrowRight.jpg"); |
| 80 | |
| 81 | Log.log("cursors", () -> "setting to arrow"); |
| 82 | if (currentCursor != arrowRight) glfwSetCursor(window.getGLFWWindowReference(), currentCursor = arrowRight); |
| 83 | } |
| 84 | |
| 85 | static public void arrowDown(Window window) { |
| 86 | if (arrowDown == 0) arrowDown = loadResource("arrowDown.jpg"); |
no test coverage detected