MBC.Shared.Entities.Match.RoundBegin C# (CSharp) Method

RoundBegin() protected method

Creates a RoundBeginEvent from within the match and returns it. Invokes any event subscriptions to OnRoundBegin.
Thrown when the event being created is not valid for the /// current state of the match.
protected RoundBegin ( ) : void
return void
        protected internal virtual void RoundBegin()
        {
            InvokeEvent(new RoundBeginEvent(this));
        }