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

IsIdleFor() public method

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