AcManager.Tools.Starters.BaseStarter.WaitUntilGame C# (CSharp) 메소드

WaitUntilGame() 공개 메소드

public WaitUntilGame ( ) : void
리턴 void
        public void WaitUntilGame() {
            if (GameProcess != null) return;

            for (var i = 0; i < 100; i++) {
                GameProcess = TryToGetGameProcess();
                if (GameProcess != null) break;
                Thread.Sleep(500);
            }
        }