Exemplo n.º 1
0
func GetNumTouchFingers(touchId TouchID) int {
	_touchId := (C.SDL_TouchID)(touchId)
	return (int)(C.SDL_GetNumTouchFingers(_touchId))
}
Exemplo n.º 2
0
func GetNumTouchFingers(t TouchID) int {
	return int(C.SDL_GetNumTouchFingers(t.c()))
}