mirror of
https://github.com/exyte/Macaw.git
synced 2024-11-13 13:14:20 +03:00
12 lines
158 B
Swift
12 lines
158 B
Swift
open class PanEvent {
|
|
|
|
open let dx: Double
|
|
open let dy: Double
|
|
|
|
init(dx: Double, dy: Double) {
|
|
self.dx = dx
|
|
self.dy = dy
|
|
}
|
|
|
|
}
|