/// <summary>
        /// Notifies a new round beginning.
        /// </summary>
        private void NewRound()
        {
            RoundBeginEvent ev = new RoundBeginEvent(CurrentRound);

            AppendEvent(ev);
            if (OnRoundBegin != null)
            {
                OnRoundBegin(this, ev);
            }
        }
Example #2
0
        private void roundBeginEvent(Event ev)
        {
            RoundBeginEvent matchBeginEvent = (RoundBeginEvent)ev;

            this.newRound();
        }