예제 #1
0
파일: sdl.go 프로젝트: gnanderson/Go-SDL
func (j *Joystick) Index() int {
	return int(C.SDL_JoystickIndex((*C.SDL_Joystick)(unsafe.Pointer(j))))
}
예제 #2
0
파일: sdl.go 프로젝트: kearsley/Go-SDL
// Get the device index of an opened joystick.
func (joystick *Joystick) Index() int {
	return int(C.SDL_JoystickIndex(joystick.cJoystick))
}
예제 #3
0
파일: joystick.go 프로젝트: beoran/fungo
// Get the device index of an opened joystick.
func JoystickIndex(joystick *C.SDL_Joystick) int {
	return int(C.SDL_JoystickIndex(joystick))
}