コード例 #1
0
ファイル: sdl_touch.go プロジェクト: kyleconroy/golds
func GetTouchDevice(index int) TouchID {
	_index := (C.int)(index)
	return (TouchID)(C.SDL_GetTouchDevice(_index))
}
コード例 #2
0
ファイル: touch.go プロジェクト: JalfResi/go-sdl2
func GetTouchDevice(index int) TouchID {
	return TouchID(C.SDL_GetTouchDevice(C.int(index)))
}