public GLFWMouseButtonCallback getMouseCallback() { return mouseCb; }
/** * Gets the GLFWWindow's Mouse Button Callback * * @return Mouse Button Callback of the GLFW Instance */ public GLFWMouseButtonCallback getMouseButtonCallback() { return mouseButtonCallback; }
/** * Sets the GLFWWindow's Mouse Button Callback * * @param mouseButtonCallback GLFWMouseButtonCallback to be used by the GLFW Instance */ public void setMouseButtonCallback(GLFWMouseButtonCallback mouseButtonCallback) { this.mouseButtonCallback = mouseButtonCallback; }