コード例 #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))
}