Artemis.Engine.Input.KeyboardInput.IsIdleForAtleast C# (CSharp) Method

IsIdleForAtleast() public method

Check if the keyboard has been idle for at least the given number of frames.
public IsIdleForAtleast ( int frames ) : bool
frames int
return bool
        public bool IsIdleForAtleast(int frames)
        {
            return FramesSinceLastKeyboardActivity >= frames;
        }