func GetTouchDevice(index int) TouchID { _index := (C.int)(index) return (TouchID)(C.SDL_GetTouchDevice(_index)) }
func GetTouchDevice(index int) TouchID { return TouchID(C.SDL_GetTouchDevice(C.int(index))) }