├── .gitignore ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── Package.swift ├── README.md ├── Sources └── ClockRotationEffect │ └── ClockRotationEffect.swift └── Tests └── ClockRotationEffectTests └── ClockRotationEffectTests.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eilgnaw/ClockRotationEffect/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eilgnaw/ClockRotationEffect/HEAD/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eilgnaw/ClockRotationEffect/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eilgnaw/ClockRotationEffect/HEAD/README.md -------------------------------------------------------------------------------- /Sources/ClockRotationEffect/ClockRotationEffect.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | -------------------------------------------------------------------------------- /Tests/ClockRotationEffectTests/ClockRotationEffectTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eilgnaw/ClockRotationEffect/HEAD/Tests/ClockRotationEffectTests/ClockRotationEffectTests.swift --------------------------------------------------------------------------------