Exemple #1
0
            public static MatchMother Create()
            {
                var instance = new MatchMother();

                // TODO(sorae): impl..

                return(instance);
            }
Exemple #2
0
        public void Run()
        {
            if (IsRunning)
            {
                // TODO(sorae): log
                return;
            }
            IsRunning = true;

            // TODO(sorae): startup log

            _matchMother = MatchMother.Factory.Create();
            Task.Factory.StartNew(_matchMother.Start);

            OnAppFinished.WaitOne();

            IsRunning = false;
        }