예제 #1
0
파일: haptic.go 프로젝트: JalfResi/go-sdl2
func HapticName(index int) string {
	return (C.GoString)(C.SDL_HapticName(C.int(index)))
}
예제 #2
0
func HapticName(device_index int) string {
	_device_index := (C.int)(device_index)
	return (C.GoString)(C.SDL_HapticName(_device_index))
}