/// <summary>
 /// Returns true when the key is first pressed down, or was not being held down but now is
 /// </summary>
 public bool IsKeyPressed(string binding)
 {
     return(activeListener.IsKeyHit(binding));
 }