Package org.lwjgl.sdl

Class SDL_TimerCallback

java.lang.Object
org.lwjgl.system.Callback
org.lwjgl.sdl.SDL_TimerCallback
All Implemented Interfaces:
AutoCloseable, SDL_TimerCallbackI, CallbackI, NativeResource, Pointer

public abstract class SDL_TimerCallback extends Callback implements SDL_TimerCallbackI
Callback function: SDL_TimerCallback
  • Method Details

    • create

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

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

      public static SDL_TimerCallback create(SDL_TimerCallbackI instance)
      Creates a SDL_TimerCallback instance that delegates to the specified SDL_TimerCallbackI instance.