Artemis.Engine.Input.KeyboardInput.IsIdleForAtleast C# (CSharp) Метод

IsIdleForAtleast() публичный Метод

Check if the keyboard has been idle for at least the given number of frames.
public IsIdleForAtleast ( int frames ) : bool
frames int
Результат bool
        public bool IsIdleForAtleast(int frames)
        {
            return FramesSinceLastKeyboardActivity >= frames;
        }