Skip to content

Commit 7b62c83

Browse files
authored
Merge pull request #73 from ilyavelilyaev/master
Change Movement struct members to be public
2 parents 43b834f + 703ee79 commit 7b62c83

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: ZLSwipeableViewSwift/ZLSwipeableView.swift

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ public typealias DidTap = (view: UIView, atLocation: CGPoint) -> ()
2727
public typealias DidDisappear = (view: UIView) -> ()
2828

2929
public struct Movement {
30-
let location: CGPoint
31-
let translation: CGPoint
32-
let velocity: CGPoint
30+
public let location: CGPoint
31+
public let translation: CGPoint
32+
public let velocity: CGPoint
3333
}
3434

3535
// MARK: - Main

0 commit comments

Comments
 (0)