├── .gitignore ├── .gitmodules ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── contents.xcworkspacedata ├── .travis.yml ├── LICENSE ├── Package.resolved ├── Package.swift ├── QuadKit.png ├── README.md ├── Sources ├── QuadKit Examples │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ └── ExampleView.swift └── QuadKit │ ├── BindingSupport.swift │ ├── EachineE10W.swift │ ├── InputController.swift │ ├── InputState.swift │ └── QuadClient.swift └── Tests ├── QuadKit.xctestplan └── QuadKitTests └── InputStateTests.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieloc/QuadKit/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieloc/QuadKit/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieloc/QuadKit/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieloc/QuadKit/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieloc/QuadKit/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieloc/QuadKit/HEAD/Package.swift -------------------------------------------------------------------------------- /QuadKit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieloc/QuadKit/HEAD/QuadKit.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieloc/QuadKit/HEAD/README.md -------------------------------------------------------------------------------- /Sources/QuadKit Examples/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieloc/QuadKit/HEAD/Sources/QuadKit Examples/AppDelegate.swift -------------------------------------------------------------------------------- /Sources/QuadKit Examples/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieloc/QuadKit/HEAD/Sources/QuadKit Examples/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Sources/QuadKit Examples/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieloc/QuadKit/HEAD/Sources/QuadKit Examples/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Sources/QuadKit Examples/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieloc/QuadKit/HEAD/Sources/QuadKit Examples/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Sources/QuadKit Examples/ExampleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieloc/QuadKit/HEAD/Sources/QuadKit Examples/ExampleView.swift -------------------------------------------------------------------------------- /Sources/QuadKit/BindingSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieloc/QuadKit/HEAD/Sources/QuadKit/BindingSupport.swift -------------------------------------------------------------------------------- /Sources/QuadKit/EachineE10W.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieloc/QuadKit/HEAD/Sources/QuadKit/EachineE10W.swift -------------------------------------------------------------------------------- /Sources/QuadKit/InputController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieloc/QuadKit/HEAD/Sources/QuadKit/InputController.swift -------------------------------------------------------------------------------- /Sources/QuadKit/InputState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieloc/QuadKit/HEAD/Sources/QuadKit/InputState.swift -------------------------------------------------------------------------------- /Sources/QuadKit/QuadClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieloc/QuadKit/HEAD/Sources/QuadKit/QuadClient.swift -------------------------------------------------------------------------------- /Tests/QuadKit.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieloc/QuadKit/HEAD/Tests/QuadKit.xctestplan -------------------------------------------------------------------------------- /Tests/QuadKitTests/InputStateTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrieloc/QuadKit/HEAD/Tests/QuadKitTests/InputStateTests.swift --------------------------------------------------------------------------------