gitextract_orfcx0vt/ ├── .gitignore ├── LICENSE ├── README.textile ├── build.template.properties ├── build.xml ├── libs/ │ └── starling.swc ├── pom.xml ├── src/ │ └── org/ │ └── gestouch/ │ ├── core/ │ │ ├── Gestouch.as │ │ ├── GestureState.as │ │ ├── GesturesManager.as │ │ ├── IDisplayListAdapter.as │ │ ├── IGestureTargetAdapter.as │ │ ├── IInputAdapter.as │ │ ├── ITouchHitTester.as │ │ ├── Touch.as │ │ ├── TouchesManager.as │ │ └── gestouch_internal.as │ ├── events/ │ │ └── GestureEvent.as │ ├── extensions/ │ │ ├── native/ │ │ │ ├── DisplayObjectUtils.as │ │ │ ├── NativeDisplayListAdapter.as │ │ │ └── NativeTouchHitTester.as │ │ └── starling/ │ │ ├── StarlingDisplayListAdapter.as │ │ ├── StarlingTouchHitTester.as │ │ └── StarlingUtils.as │ ├── gestures/ │ │ ├── AbstractContinuousGesture.as │ │ ├── AbstractDiscreteGesture.as │ │ ├── Gesture.as │ │ ├── LongPressGesture.as │ │ ├── PanGesture.as │ │ ├── PanGestureDirection.as │ │ ├── RotateGesture.as │ │ ├── SwipeGesture.as │ │ ├── SwipeGestureDirection.as │ │ ├── TapGesture.as │ │ ├── TransformGesture.as │ │ └── ZoomGesture.as │ ├── input/ │ │ ├── NativeInputAdapter.as │ │ └── TUIOInputAdapter.as │ └── utils/ │ └── GestureUtils.as └── version.properties