Artemis.Engine.Input.MouseInput.IsMouseStillForAtleast C# (CSharp) Метод

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

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