1
1
mirror of https://github.com/exyte/Macaw.git synced 2024-10-26 13:01:25 +03:00
Macaw/Source/events/PanEvent.swift
2018-09-04 17:31:00 +07:00

15 lines
277 B
Swift

open class PanEvent: Event {
public let dx: Double
public let dy: Double
public let count: Int
init(node: Node, dx: Double, dy: Double, count: Int) {
self.dx = dx
self.dy = dy
self.count = count
super.init(node: node)
}
}