├── .gitignore ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── LICENSE.md ├── Package.swift ├── README.md └── Sources └── Feedback ├── Audio ├── Audio.swift ├── AudioFeedback.swift └── AudioPlayer.swift ├── Feedback.swift ├── Feedback ├── AnyFeedback.swift └── Feedback+Binding.swift ├── Flash └── Flash.swift ├── Haptic ├── PatternHaptic.swift └── SystemHaptic.swift ├── Miscellaneous └── DelayedFeedback.swift └── Support ├── Backport.swift └── OnChange.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Feedback/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Feedback/HEAD/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Feedback/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Feedback/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Feedback/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Feedback/Audio/Audio.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Feedback/HEAD/Sources/Feedback/Audio/Audio.swift -------------------------------------------------------------------------------- /Sources/Feedback/Audio/AudioFeedback.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Feedback/HEAD/Sources/Feedback/Audio/AudioFeedback.swift -------------------------------------------------------------------------------- /Sources/Feedback/Audio/AudioPlayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Feedback/HEAD/Sources/Feedback/Audio/AudioPlayer.swift -------------------------------------------------------------------------------- /Sources/Feedback/Feedback.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Feedback/HEAD/Sources/Feedback/Feedback.swift -------------------------------------------------------------------------------- /Sources/Feedback/Feedback/AnyFeedback.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Feedback/HEAD/Sources/Feedback/Feedback/AnyFeedback.swift -------------------------------------------------------------------------------- /Sources/Feedback/Feedback/Feedback+Binding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Feedback/HEAD/Sources/Feedback/Feedback/Feedback+Binding.swift -------------------------------------------------------------------------------- /Sources/Feedback/Flash/Flash.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Feedback/HEAD/Sources/Feedback/Flash/Flash.swift -------------------------------------------------------------------------------- /Sources/Feedback/Haptic/PatternHaptic.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Feedback/HEAD/Sources/Feedback/Haptic/PatternHaptic.swift -------------------------------------------------------------------------------- /Sources/Feedback/Haptic/SystemHaptic.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Feedback/HEAD/Sources/Feedback/Haptic/SystemHaptic.swift -------------------------------------------------------------------------------- /Sources/Feedback/Miscellaneous/DelayedFeedback.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Feedback/HEAD/Sources/Feedback/Miscellaneous/DelayedFeedback.swift -------------------------------------------------------------------------------- /Sources/Feedback/Support/Backport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Feedback/HEAD/Sources/Feedback/Support/Backport.swift -------------------------------------------------------------------------------- /Sources/Feedback/Support/OnChange.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaps80/Feedback/HEAD/Sources/Feedback/Support/OnChange.swift --------------------------------------------------------------------------------