├── .gitignore ├── .swift-version ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── contents.xcworkspacedata ├── CHANGELOG.md ├── Info.plist ├── LICENSE ├── MKTween.h ├── MKTween.podspec ├── MKTween.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcuserdata │ ├── kevin.xcuserdatad │ └── xcschemes │ │ ├── MKTween.xcscheme │ │ └── xcschememanagement.plist │ └── kevinmalkic.xcuserdatad │ └── xcschemes │ ├── MKTween.xcscheme │ └── xcschememanagement.plist ├── MKTween.xcworkspace └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── MKTween ├── BasePeriod.swift ├── BasePeriods.swift ├── Group.swift ├── Period.swift ├── Sequence.swift ├── TimingFunctions.swift ├── Tween.swift └── Tweenable.swift ├── MKTweenDemo ├── MKTweenDemo.xcodeproj │ └── project.pbxproj ├── MKTweenDemo.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── MKTweenDemo │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ ├── Info.plist │ ├── Menu │ │ ├── HeaderView.swift │ │ ├── Menu.Group.ViewController.swift │ │ ├── Menu.Sequence.ViewController.swift │ │ ├── Menu.Timing.Cell.swift │ │ ├── Menu.Timing.ViewController.swift │ │ └── Menu.ViewController.swift │ └── Subviewable.swift ├── Podfile └── Pods │ ├── Cartography │ ├── Cartography │ │ ├── Align.swift │ │ ├── AutoresizingMaskLayoutProxy.swift │ │ ├── Coefficients.swift │ │ ├── Compound.swift │ │ ├── Constrain.swift │ │ ├── Constraint.swift │ │ ├── ConstraintGroup.swift │ │ ├── Context.swift │ │ ├── Dimension.swift │ │ ├── Distribute.swift │ │ ├── Edge.swift │ │ ├── Edges.swift │ │ ├── Expression.swift │ │ ├── Extensions.swift │ │ ├── LayoutGuide.swift │ │ ├── LayoutGuideProxy.swift │ │ ├── LayoutItem.swift │ │ ├── LayoutProxy+TypeErasure.swift │ │ ├── LayoutProxy.swift │ │ ├── LayoutSupport.swift │ │ ├── LayoutSupportProxy.swift │ │ ├── Point.swift │ │ ├── Priority.swift │ │ ├── Property.swift │ │ ├── Size.swift │ │ ├── View.swift │ │ └── ViewProxy.swift │ ├── LICENSE │ └── README.md │ ├── Manifest.lock │ ├── Pods.xcodeproj │ └── project.pbxproj │ └── Target Support Files │ ├── Cartography │ ├── Cartography-Info.plist │ ├── Cartography-dummy.m │ ├── Cartography-prefix.pch │ ├── Cartography-umbrella.h │ ├── Cartography.modulemap │ └── Cartography.xcconfig │ └── Pods-MKTweenDemo │ ├── Pods-MKTweenDemo-Info.plist │ ├── Pods-MKTweenDemo-acknowledgements.markdown │ ├── Pods-MKTweenDemo-acknowledgements.plist │ ├── Pods-MKTweenDemo-dummy.m │ ├── Pods-MKTweenDemo-frameworks.sh │ ├── Pods-MKTweenDemo-umbrella.h │ ├── Pods-MKTweenDemo.debug.xcconfig │ ├── Pods-MKTweenDemo.modulemap │ └── Pods-MKTweenDemo.release.xcconfig ├── Package.swift └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 4.2 2 | -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/LICENSE -------------------------------------------------------------------------------- /MKTween.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTween.h -------------------------------------------------------------------------------- /MKTween.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTween.podspec -------------------------------------------------------------------------------- /MKTween.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTween.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MKTween.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTween.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /MKTween.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTween.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /MKTween.xcodeproj/xcuserdata/kevin.xcuserdatad/xcschemes/MKTween.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTween.xcodeproj/xcuserdata/kevin.xcuserdatad/xcschemes/MKTween.xcscheme -------------------------------------------------------------------------------- /MKTween.xcodeproj/xcuserdata/kevin.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTween.xcodeproj/xcuserdata/kevin.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /MKTween.xcodeproj/xcuserdata/kevinmalkic.xcuserdatad/xcschemes/MKTween.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTween.xcodeproj/xcuserdata/kevinmalkic.xcuserdatad/xcschemes/MKTween.xcscheme -------------------------------------------------------------------------------- /MKTween.xcodeproj/xcuserdata/kevinmalkic.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTween.xcodeproj/xcuserdata/kevinmalkic.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /MKTween.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTween.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /MKTween/BasePeriod.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTween/BasePeriod.swift -------------------------------------------------------------------------------- /MKTween/BasePeriods.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTween/BasePeriods.swift -------------------------------------------------------------------------------- /MKTween/Group.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTween/Group.swift -------------------------------------------------------------------------------- /MKTween/Period.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTween/Period.swift -------------------------------------------------------------------------------- /MKTween/Sequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTween/Sequence.swift -------------------------------------------------------------------------------- /MKTween/TimingFunctions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTween/TimingFunctions.swift -------------------------------------------------------------------------------- /MKTween/Tween.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTween/Tween.swift -------------------------------------------------------------------------------- /MKTween/Tweenable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTween/Tweenable.swift -------------------------------------------------------------------------------- /MKTweenDemo/MKTweenDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/MKTweenDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MKTweenDemo/MKTweenDemo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/MKTweenDemo.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /MKTweenDemo/MKTweenDemo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/MKTweenDemo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /MKTweenDemo/MKTweenDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/MKTweenDemo/AppDelegate.swift -------------------------------------------------------------------------------- /MKTweenDemo/MKTweenDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/MKTweenDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /MKTweenDemo/MKTweenDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/MKTweenDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /MKTweenDemo/MKTweenDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/MKTweenDemo/Info.plist -------------------------------------------------------------------------------- /MKTweenDemo/MKTweenDemo/Menu/HeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/MKTweenDemo/Menu/HeaderView.swift -------------------------------------------------------------------------------- /MKTweenDemo/MKTweenDemo/Menu/Menu.Group.ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/MKTweenDemo/Menu/Menu.Group.ViewController.swift -------------------------------------------------------------------------------- /MKTweenDemo/MKTweenDemo/Menu/Menu.Sequence.ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/MKTweenDemo/Menu/Menu.Sequence.ViewController.swift -------------------------------------------------------------------------------- /MKTweenDemo/MKTweenDemo/Menu/Menu.Timing.Cell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/MKTweenDemo/Menu/Menu.Timing.Cell.swift -------------------------------------------------------------------------------- /MKTweenDemo/MKTweenDemo/Menu/Menu.Timing.ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/MKTweenDemo/Menu/Menu.Timing.ViewController.swift -------------------------------------------------------------------------------- /MKTweenDemo/MKTweenDemo/Menu/Menu.ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/MKTweenDemo/Menu/Menu.ViewController.swift -------------------------------------------------------------------------------- /MKTweenDemo/MKTweenDemo/Subviewable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/MKTweenDemo/Subviewable.swift -------------------------------------------------------------------------------- /MKTweenDemo/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/Podfile -------------------------------------------------------------------------------- /MKTweenDemo/Pods/Cartography/Cartography/Align.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/Pods/Cartography/Cartography/Align.swift -------------------------------------------------------------------------------- /MKTweenDemo/Pods/Cartography/Cartography/AutoresizingMaskLayoutProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/Pods/Cartography/Cartography/AutoresizingMaskLayoutProxy.swift -------------------------------------------------------------------------------- /MKTweenDemo/Pods/Cartography/Cartography/Coefficients.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/Pods/Cartography/Cartography/Coefficients.swift -------------------------------------------------------------------------------- /MKTweenDemo/Pods/Cartography/Cartography/Compound.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/Pods/Cartography/Cartography/Compound.swift -------------------------------------------------------------------------------- /MKTweenDemo/Pods/Cartography/Cartography/Constrain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/Pods/Cartography/Cartography/Constrain.swift -------------------------------------------------------------------------------- /MKTweenDemo/Pods/Cartography/Cartography/Constraint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/Pods/Cartography/Cartography/Constraint.swift -------------------------------------------------------------------------------- /MKTweenDemo/Pods/Cartography/Cartography/ConstraintGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/Pods/Cartography/Cartography/ConstraintGroup.swift -------------------------------------------------------------------------------- /MKTweenDemo/Pods/Cartography/Cartography/Context.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/Pods/Cartography/Cartography/Context.swift -------------------------------------------------------------------------------- /MKTweenDemo/Pods/Cartography/Cartography/Dimension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/Pods/Cartography/Cartography/Dimension.swift -------------------------------------------------------------------------------- /MKTweenDemo/Pods/Cartography/Cartography/Distribute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/Pods/Cartography/Cartography/Distribute.swift -------------------------------------------------------------------------------- /MKTweenDemo/Pods/Cartography/Cartography/Edge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/Pods/Cartography/Cartography/Edge.swift -------------------------------------------------------------------------------- /MKTweenDemo/Pods/Cartography/Cartography/Edges.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/Pods/Cartography/Cartography/Edges.swift -------------------------------------------------------------------------------- /MKTweenDemo/Pods/Cartography/Cartography/Expression.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/Pods/Cartography/Cartography/Expression.swift -------------------------------------------------------------------------------- /MKTweenDemo/Pods/Cartography/Cartography/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/Pods/Cartography/Cartography/Extensions.swift -------------------------------------------------------------------------------- /MKTweenDemo/Pods/Cartography/Cartography/LayoutGuide.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/Pods/Cartography/Cartography/LayoutGuide.swift -------------------------------------------------------------------------------- /MKTweenDemo/Pods/Cartography/Cartography/LayoutGuideProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/Pods/Cartography/Cartography/LayoutGuideProxy.swift -------------------------------------------------------------------------------- /MKTweenDemo/Pods/Cartography/Cartography/LayoutItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/Pods/Cartography/Cartography/LayoutItem.swift -------------------------------------------------------------------------------- /MKTweenDemo/Pods/Cartography/Cartography/LayoutProxy+TypeErasure.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/Pods/Cartography/Cartography/LayoutProxy+TypeErasure.swift -------------------------------------------------------------------------------- /MKTweenDemo/Pods/Cartography/Cartography/LayoutProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/Pods/Cartography/Cartography/LayoutProxy.swift -------------------------------------------------------------------------------- /MKTweenDemo/Pods/Cartography/Cartography/LayoutSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/Pods/Cartography/Cartography/LayoutSupport.swift -------------------------------------------------------------------------------- /MKTweenDemo/Pods/Cartography/Cartography/LayoutSupportProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/Pods/Cartography/Cartography/LayoutSupportProxy.swift -------------------------------------------------------------------------------- /MKTweenDemo/Pods/Cartography/Cartography/Point.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/Pods/Cartography/Cartography/Point.swift -------------------------------------------------------------------------------- /MKTweenDemo/Pods/Cartography/Cartography/Priority.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/Pods/Cartography/Cartography/Priority.swift -------------------------------------------------------------------------------- /MKTweenDemo/Pods/Cartography/Cartography/Property.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/Pods/Cartography/Cartography/Property.swift -------------------------------------------------------------------------------- /MKTweenDemo/Pods/Cartography/Cartography/Size.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/Pods/Cartography/Cartography/Size.swift -------------------------------------------------------------------------------- /MKTweenDemo/Pods/Cartography/Cartography/View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/Pods/Cartography/Cartography/View.swift -------------------------------------------------------------------------------- /MKTweenDemo/Pods/Cartography/Cartography/ViewProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/Pods/Cartography/Cartography/ViewProxy.swift -------------------------------------------------------------------------------- /MKTweenDemo/Pods/Cartography/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/Pods/Cartography/LICENSE -------------------------------------------------------------------------------- /MKTweenDemo/Pods/Cartography/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/Pods/Cartography/README.md -------------------------------------------------------------------------------- /MKTweenDemo/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/Pods/Manifest.lock -------------------------------------------------------------------------------- /MKTweenDemo/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MKTweenDemo/Pods/Target Support Files/Cartography/Cartography-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/Pods/Target Support Files/Cartography/Cartography-Info.plist -------------------------------------------------------------------------------- /MKTweenDemo/Pods/Target Support Files/Cartography/Cartography-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/Pods/Target Support Files/Cartography/Cartography-dummy.m -------------------------------------------------------------------------------- /MKTweenDemo/Pods/Target Support Files/Cartography/Cartography-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/Pods/Target Support Files/Cartography/Cartography-prefix.pch -------------------------------------------------------------------------------- /MKTweenDemo/Pods/Target Support Files/Cartography/Cartography-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/Pods/Target Support Files/Cartography/Cartography-umbrella.h -------------------------------------------------------------------------------- /MKTweenDemo/Pods/Target Support Files/Cartography/Cartography.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/Pods/Target Support Files/Cartography/Cartography.modulemap -------------------------------------------------------------------------------- /MKTweenDemo/Pods/Target Support Files/Cartography/Cartography.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/Pods/Target Support Files/Cartography/Cartography.xcconfig -------------------------------------------------------------------------------- /MKTweenDemo/Pods/Target Support Files/Pods-MKTweenDemo/Pods-MKTweenDemo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/Pods/Target Support Files/Pods-MKTweenDemo/Pods-MKTweenDemo-Info.plist -------------------------------------------------------------------------------- /MKTweenDemo/Pods/Target Support Files/Pods-MKTweenDemo/Pods-MKTweenDemo-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/Pods/Target Support Files/Pods-MKTweenDemo/Pods-MKTweenDemo-acknowledgements.markdown -------------------------------------------------------------------------------- /MKTweenDemo/Pods/Target Support Files/Pods-MKTweenDemo/Pods-MKTweenDemo-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/Pods/Target Support Files/Pods-MKTweenDemo/Pods-MKTweenDemo-acknowledgements.plist -------------------------------------------------------------------------------- /MKTweenDemo/Pods/Target Support Files/Pods-MKTweenDemo/Pods-MKTweenDemo-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/Pods/Target Support Files/Pods-MKTweenDemo/Pods-MKTweenDemo-dummy.m -------------------------------------------------------------------------------- /MKTweenDemo/Pods/Target Support Files/Pods-MKTweenDemo/Pods-MKTweenDemo-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/Pods/Target Support Files/Pods-MKTweenDemo/Pods-MKTweenDemo-frameworks.sh -------------------------------------------------------------------------------- /MKTweenDemo/Pods/Target Support Files/Pods-MKTweenDemo/Pods-MKTweenDemo-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/Pods/Target Support Files/Pods-MKTweenDemo/Pods-MKTweenDemo-umbrella.h -------------------------------------------------------------------------------- /MKTweenDemo/Pods/Target Support Files/Pods-MKTweenDemo/Pods-MKTweenDemo.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/Pods/Target Support Files/Pods-MKTweenDemo/Pods-MKTweenDemo.debug.xcconfig -------------------------------------------------------------------------------- /MKTweenDemo/Pods/Target Support Files/Pods-MKTweenDemo/Pods-MKTweenDemo.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/Pods/Target Support Files/Pods-MKTweenDemo/Pods-MKTweenDemo.modulemap -------------------------------------------------------------------------------- /MKTweenDemo/Pods/Target Support Files/Pods-MKTweenDemo/Pods-MKTweenDemo.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/MKTweenDemo/Pods/Target Support Files/Pods-MKTweenDemo/Pods-MKTweenDemo.release.xcconfig -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmalkic/MKTween/HEAD/README.md --------------------------------------------------------------------------------