FreePIE.Core.Plugins.KeyboardPlugin.WasKeyPressed C# (CSharp) Méthode

WasKeyPressed() public méthode

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

Usage Example

Exemple #1
0
 public bool getPressed(Key key)
 {
     return(plugin.WasKeyPressed((int)key));
 }