SunsetHigh.InGameMenu.sendOneKeyInput C# (CSharp) Method

sendOneKeyInput() public static method

Used for changing key controls
public static sendOneKeyInput ( Keys key ) : bool
key Keys
return bool
        public static bool sendOneKeyInput(Keys key)
        {
            nullCheck();
            if (!menuOpen)
                return false;
            return activePanel.onKeyInput(key);
        }