예제 #1
0
func GetNumTouchFingers(touchId TouchID) int {
	_touchId := (C.SDL_TouchID)(touchId)
	return (int)(C.SDL_GetNumTouchFingers(_touchId))
}
예제 #2
0
파일: touch.go 프로젝트: JalfResi/go-sdl2
func GetNumTouchFingers(t TouchID) int {
	return int(C.SDL_GetNumTouchFingers(t.c()))
}