SunsetHigh.InGameMenu.sendOneKeyInput C# (CSharp) Метод

sendOneKeyInput() публичный статический Метод

Used for changing key controls
public static sendOneKeyInput ( Keys key ) : bool
key Keys
Результат bool
        public static bool sendOneKeyInput(Keys key)
        {
            nullCheck();
            if (!menuOpen)
                return false;
            return activePanel.onKeyInput(key);
        }