summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/GestureState.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Core/GestureState.cs')
-rw-r--r--Xamarin.Forms.Core/GestureState.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/Xamarin.Forms.Core/GestureState.cs b/Xamarin.Forms.Core/GestureState.cs
new file mode 100644
index 00000000..a6c110f2
--- /dev/null
+++ b/Xamarin.Forms.Core/GestureState.cs
@@ -0,0 +1,12 @@
+namespace Xamarin.Forms
+{
+ public enum GestureState
+ {
+ Began,
+ Update,
+ Ended,
+ Failed,
+ Cancelled,
+ Possible
+ }
+} \ No newline at end of file