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