FreePIE.Core.Plugins.KeyboardPlugin.WasKeyPressed C# (CSharp) Method

WasKeyPressed() public method

public WasKeyPressed ( int key ) : bool
key int
return bool
        public bool WasKeyPressed(int key)
        {
            return getKeyPressedStrategy.IsPressed(key);
        }

Usage Example

Exemplo n.º 1
0
 public bool getPressed(Key key)
 {
     return(plugin.WasKeyPressed((int)key));
 }