mirror of
https://github.com/EmergeTools/Pow.git
synced 2026-03-25 08:55:50 +00:00
Co-authored-by: Robert Böhnke <robb@robb.is> Co-authored-by: Kasper Lahti <kasper@lahti.email>
24 lines
422 B
Swift
24 lines
422 B
Swift
import SwiftUI
|
|
import AVFoundation
|
|
|
|
public extension Animation {
|
|
enum MovingParts {
|
|
|
|
}
|
|
|
|
/// The namespace of Moving Parts animations.
|
|
static var movingParts: MovingParts.Type {
|
|
MovingParts.self
|
|
}
|
|
}
|
|
|
|
public extension AnyTransition {
|
|
enum MovingParts {
|
|
|
|
}
|
|
|
|
/// The namespace of Moving Parts transitions.
|
|
static var movingParts: MovingParts.Type {
|
|
MovingParts.self
|
|
}
|
|
}
|