GlobalEvent.EventFinished C# (CSharp) 메소드

EventFinished() 공개 메소드

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