//
// PresentAnimatorDelegate.swift
// PaiaiUIKit
//
// Created by FFIB on 2019/1/24.
// Copyright © 2019 FFIB. All rights reserved.
//
import UIKit
public protocol PresentAnimatorDelegate: class {
var animationView: UIView? { get }
var animator: PresentAnimatable { get set }
}
|