/// <summary>
 ///     Initializes a new instance of the KeyChangeHandlerSet class.
 /// </summary>
 public KeyChangeHandlerSet()
 {
     Pressed  = new KeyHandlerSet(KeyUtils.HasPressed);
     Released = new KeyHandlerSet(KeyUtils.HasReleased);
 }
Exemplo n.º 2
0
 /// <summary>
 ///     Initializes a new instance of the KeyChangeHandlerSet class.
 /// </summary>
 public KeyChangeHandlerSet()
 {
     Pressed = new KeyHandlerSet(KeyUtils.HasPressed);
     Released = new KeyHandlerSet(KeyUtils.HasReleased);
 }