GlobalEvent.EventFinished C# (CSharp) Method

EventFinished() public method

public EventFinished ( ) : void
return void
    public void EventFinished()
    {
        this.eventStarted = false;
        if(this.callingEvent != null)
        {
            this.callingEvent.GlobalEventFinished();
            this.callingEvent = null;
        }
        this.eventFinished = true;
    }