Paradox Game Engine  v1.0.0 beta06
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
GestureShape.cs
Go to the documentation of this file.
1 // Copyright (c) 2014 Silicon Studio Corp. (http://siliconstudio.co.jp)
2 // This file is distributed under GPL v3. See LICENSE.md for details.
3 namespace SiliconStudio.Paradox.Input
4 {
5  /// <summary>
6  /// Gesture possible shapes.
7  /// </summary>
8  public enum GestureShape
9  {
10  /// <summary>
11  /// Represent a gesture that has its shape along the horizontal axis.
12  /// </summary>
13  Horizontal,
14  /// <summary>
15  /// Represent a gesture that has its shape along the vertical axis.
16  /// </summary>
17  Vertical,
18  /// <summary>
19  /// Represent a gesture that has a random shape.
20  /// </summary>
21  Free,
22  }
23 }
Represent a gesture that has a random shape.
GestureShape
Gesture possible shapes.
Definition: GestureShape.cs:8
Represent a gesture that has its shape along the horizontal axis.
Represent a gesture that has its shape along the vertical axis.