summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/IPanGestureController.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Core/IPanGestureController.cs')
-rw-r--r--Xamarin.Forms.Core/IPanGestureController.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/Xamarin.Forms.Core/IPanGestureController.cs b/Xamarin.Forms.Core/IPanGestureController.cs
new file mode 100644
index 00000000..96283092
--- /dev/null
+++ b/Xamarin.Forms.Core/IPanGestureController.cs
@@ -0,0 +1,13 @@
+namespace Xamarin.Forms
+{
+ internal interface IPanGestureController
+ {
+ void SendPan(Element sender, double totalX, double totalY, int gestureId);
+
+ void SendPanCanceled(Element sender, int gestureId);
+
+ void SendPanCompleted(Element sender, int gestureId);
+
+ void SendPanStarted(Element sender, int gestureId);
+ }
+} \ No newline at end of file