Class NkCommandCustomCallback

java.lang.Object
org.lwjgl.system.Callback
org.lwjgl.nuklear.NkCommandCustomCallback
All Implemented Interfaces:
AutoCloseable, NkCommandCustomCallbackI, CallbackI, NativeResource, Pointer

public abstract class NkCommandCustomCallback extends Callback implements NkCommandCustomCallbackI
Callback function: nk_command_custom_callback
  • Method Details

    • create

      public static NkCommandCustomCallback create(long functionPointer)
      Creates a NkCommandCustomCallback instance from the specified function pointer.
      Returns:
      the new NkCommandCustomCallback
    • createSafe

      public static @Nullable NkCommandCustomCallback createSafe(long functionPointer)
      Like create, but returns null if functionPointer is NULL.
    • create

      public static NkCommandCustomCallback create(NkCommandCustomCallbackI instance)
      Creates a NkCommandCustomCallback instance that delegates to the specified NkCommandCustomCallbackI instance.