summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Tizen/IGestureController.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Platform.Tizen/IGestureController.cs')
-rw-r--r--Xamarin.Forms.Platform.Tizen/IGestureController.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/Xamarin.Forms.Platform.Tizen/IGestureController.cs b/Xamarin.Forms.Platform.Tizen/IGestureController.cs
new file mode 100644
index 00000000..e29975fd
--- /dev/null
+++ b/Xamarin.Forms.Platform.Tizen/IGestureController.cs
@@ -0,0 +1,15 @@
+using System;
+
+namespace Xamarin.Forms.Platform.Tizen
+{
+ public interface IGestureController
+ {
+ void SendStarted(View sender, object data);
+
+ void SendMoved(View sender, object data);
+
+ void SendCompleted(View sender, object data);
+
+ void SendCanceled(View sender, object data);
+ }
+} \ No newline at end of file