Patcher.UI.Progress.Update C# (CSharp) 메소드

Update() 공개 메소드

public Update ( long current, long total, string text ) : void
current long
total long
text string
리턴 void
        public void Update(long current, long total, string text)
        {
            if (CanUpdate(current, total))
            {
                DoUpdate(current, total, text);
            }
        }