예제 #1
0
파일: sdl.go 프로젝트: kearsley/Go-SDL
// Get the number of POV hats on a joystick
func (joystick *Joystick) NumHats() int {
	return int(C.SDL_JoystickNumHats(joystick.cJoystick))
}
예제 #2
0
func (joystick *Joystick) NumHats() int {
	_joystick := (*C.SDL_Joystick)(joystick)
	return (int)(C.SDL_JoystickNumHats(_joystick))
}
예제 #3
0
파일: sdl.go 프로젝트: gnanderson/Go-SDL
func (j *Joystick) NumHats() int {
	return int(C.SDL_JoystickNumHats((*C.SDL_Joystick)(unsafe.Pointer(j))))
}
예제 #4
0
파일: joystick.go 프로젝트: tanema/amore
// Joystick (https://wiki.libsdl.org/SDL_JoystickNumHats)
func (joy *Joystick) NumHats() int {
	return (int)(C.SDL_JoystickNumHats(joy.cptr()))
}
예제 #5
0
파일: joystick.go 프로젝트: beoran/fungo
// Get the number of POV hats on a joystick
func JoystickNumHats(joystick *C.SDL_Joystick) int {
	return int(C.SDL_JoystickNumHats(joystick))
}