Artemis.Engine.Input.MouseInput.IsMouseStillForAtleast C# (CSharp) Method

IsMouseStillForAtleast() public method

Check if the mouse has been still for at least the given number of frames.
public IsMouseStillForAtleast ( int frames ) : bool
frames int
return bool
        public bool IsMouseStillForAtleast(int frames)
        {
            return FramesMouseStill >= frames;
        }