예제 #1
0
파일: haptic.go 프로젝트: JalfResi/go-sdl2
func HapticIndex(h *Haptic) int {
	return int(C.SDL_HapticIndex(h.cptr()))
}
예제 #2
0
func HapticIndex(haptic *Haptic) int {
	_haptic := (*C.SDL_Haptic)(unsafe.Pointer(haptic))
	return (int)(C.SDL_HapticIndex(_haptic))
}