// Get the number of POV hats on a joystick func (joystick *Joystick) NumHats() int { return int(C.SDL_JoystickNumHats(joystick.cJoystick)) }
func (joystick *Joystick) NumHats() int { _joystick := (*C.SDL_Joystick)(joystick) return (int)(C.SDL_JoystickNumHats(_joystick)) }
func (j *Joystick) NumHats() int { return int(C.SDL_JoystickNumHats((*C.SDL_Joystick)(unsafe.Pointer(j)))) }
// Joystick (https://wiki.libsdl.org/SDL_JoystickNumHats) func (joy *Joystick) NumHats() int { return (int)(C.SDL_JoystickNumHats(joy.cptr())) }
// Get the number of POV hats on a joystick func JoystickNumHats(joystick *C.SDL_Joystick) int { return int(C.SDL_JoystickNumHats(joystick)) }