Joystick hat position change event structure (event.jhat.*)
Defined in <SDL3/SDL_events.h>
typedef struct SDL_JoyHatEvent
{/**< SDL_EVENT_JOYSTICK_HAT_MOTION */
SDL_EventType type;
Uint32 reserved;/**< In nanoseconds, populated using SDL_GetTicksNS() */
Uint64 timestamp; /**< The joystick instance id */
SDL_JoystickID which; /**< The joystick hat index */
Uint8 hat; /**< The hat position value.
Uint8 value; * \sa SDL_HAT_LEFTUP SDL_HAT_UP SDL_HAT_RIGHTUP
* \sa SDL_HAT_LEFT SDL_HAT_CENTERED SDL_HAT_RIGHT
* \sa SDL_HAT_LEFTDOWN SDL_HAT_DOWN SDL_HAT_RIGHTDOWN
*
* Note that zero means the POV is centered.
*/
Uint8 padding1;
Uint8 padding2; } SDL_JoyHatEvent;
This struct is available since SDL 3.1.3.