Paradox Game Engine  v1.0.0 beta06
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
KeyEventType.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  /// Used by <see cref="KeyEvent"/>
7  /// </summary>
8  public enum KeyEventType
9  {
10  /// <summary>
11  /// A key has been pressed.
12  /// </summary>
13  Pressed,
14 
15  /// <summary>
16  /// A key has been released.
17  /// </summary>
18  Released
19  }
20 }
A key has been released.
A key has been pressed.
KeyEventType
Used by KeyEvent
Definition: KeyEventType.cs:8