├── .gitignore ├── LICENSE ├── M5MultitouchSupport.podspec ├── M5MultitouchSupport.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── M5MultitouchSupport ├── Info.plist ├── M5MTDefinesInternal.h ├── M5MultitouchEvent.h ├── M5MultitouchEvent.m ├── M5MultitouchEventInternal.h ├── M5MultitouchListener.h ├── M5MultitouchListener.m ├── M5MultitouchListenerInternal.h ├── M5MultitouchManager.h ├── M5MultitouchManager.m ├── M5MultitouchManagerInternal.h ├── M5MultitouchSupport.h ├── M5MultitouchTouch.h ├── M5MultitouchTouch.m └── M5MultitouchTouchInternal.h └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhuusko5/M5MultitouchSupport/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhuusko5/M5MultitouchSupport/HEAD/LICENSE -------------------------------------------------------------------------------- /M5MultitouchSupport.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhuusko5/M5MultitouchSupport/HEAD/M5MultitouchSupport.podspec -------------------------------------------------------------------------------- /M5MultitouchSupport.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhuusko5/M5MultitouchSupport/HEAD/M5MultitouchSupport.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /M5MultitouchSupport.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhuusko5/M5MultitouchSupport/HEAD/M5MultitouchSupport.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /M5MultitouchSupport/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhuusko5/M5MultitouchSupport/HEAD/M5MultitouchSupport/Info.plist -------------------------------------------------------------------------------- /M5MultitouchSupport/M5MTDefinesInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhuusko5/M5MultitouchSupport/HEAD/M5MultitouchSupport/M5MTDefinesInternal.h -------------------------------------------------------------------------------- /M5MultitouchSupport/M5MultitouchEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhuusko5/M5MultitouchSupport/HEAD/M5MultitouchSupport/M5MultitouchEvent.h -------------------------------------------------------------------------------- /M5MultitouchSupport/M5MultitouchEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhuusko5/M5MultitouchSupport/HEAD/M5MultitouchSupport/M5MultitouchEvent.m -------------------------------------------------------------------------------- /M5MultitouchSupport/M5MultitouchEventInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhuusko5/M5MultitouchSupport/HEAD/M5MultitouchSupport/M5MultitouchEventInternal.h -------------------------------------------------------------------------------- /M5MultitouchSupport/M5MultitouchListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhuusko5/M5MultitouchSupport/HEAD/M5MultitouchSupport/M5MultitouchListener.h -------------------------------------------------------------------------------- /M5MultitouchSupport/M5MultitouchListener.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhuusko5/M5MultitouchSupport/HEAD/M5MultitouchSupport/M5MultitouchListener.m -------------------------------------------------------------------------------- /M5MultitouchSupport/M5MultitouchListenerInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhuusko5/M5MultitouchSupport/HEAD/M5MultitouchSupport/M5MultitouchListenerInternal.h -------------------------------------------------------------------------------- /M5MultitouchSupport/M5MultitouchManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhuusko5/M5MultitouchSupport/HEAD/M5MultitouchSupport/M5MultitouchManager.h -------------------------------------------------------------------------------- /M5MultitouchSupport/M5MultitouchManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhuusko5/M5MultitouchSupport/HEAD/M5MultitouchSupport/M5MultitouchManager.m -------------------------------------------------------------------------------- /M5MultitouchSupport/M5MultitouchManagerInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhuusko5/M5MultitouchSupport/HEAD/M5MultitouchSupport/M5MultitouchManagerInternal.h -------------------------------------------------------------------------------- /M5MultitouchSupport/M5MultitouchSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhuusko5/M5MultitouchSupport/HEAD/M5MultitouchSupport/M5MultitouchSupport.h -------------------------------------------------------------------------------- /M5MultitouchSupport/M5MultitouchTouch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhuusko5/M5MultitouchSupport/HEAD/M5MultitouchSupport/M5MultitouchTouch.h -------------------------------------------------------------------------------- /M5MultitouchSupport/M5MultitouchTouch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhuusko5/M5MultitouchSupport/HEAD/M5MultitouchSupport/M5MultitouchTouch.m -------------------------------------------------------------------------------- /M5MultitouchSupport/M5MultitouchTouchInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhuusko5/M5MultitouchSupport/HEAD/M5MultitouchSupport/M5MultitouchTouchInternal.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhuusko5/M5MultitouchSupport/HEAD/README.md --------------------------------------------------------------------------------