AcTools.Processes.Showroom.ClassicShooter.Wait C# (CSharp) Method

Wait() private method

private Wait ( int delay ) : void
delay int
return void
            private void Wait(int delay) {
                Thread.Sleep(delay);
                if (_terminated) {
                    throw new ShotingCancelledException();
                }

                if (_process.HasExitedSafe()) {
                    throw new ProcessExitedException();
                }
            }
        }