5 lines
137 B
Swift
5 lines
137 B
Swift
|
/// The protocol that an animator delegate needs to conform to.
|
||
|
public protocol AnimatorDelegate: class {
|
||
|
func animatorHasNewFrame()
|
||
|
}
|