Example #1
0
func (h *Haptic) Pause() int {
	return int(C.SDL_HapticPause(h.cptr()))
}
Example #2
0
func (haptic *Haptic) Pause() int {
	_haptic := (*C.SDL_Haptic)(unsafe.Pointer(haptic))
	return (int)(C.SDL_HapticPause(_haptic))
}