1
1
mirror of https://github.com/exyte/Macaw.git synced 2024-11-13 13:14:20 +03:00
Macaw/Source/events/PanEvent.swift
2016-09-27 19:45:31 +06:00

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
}
}