internal ObjectiveStatusProxy(CustomExpHandlerBase b)
        {
            Base = b;
            Base.RegisterUpdateEvent(OnUpdateWardenObjective);

            GlobalMessage.OnObjectiveStateChanged += OnStateChanged;
            Base.OnUnloadEvent += () => { GlobalMessage.OnObjectiveStateChanged -= OnStateChanged; };
        }
Exemplo n.º 2
0
 internal BuilderProxy(CustomExpHandlerBase b)
 {
     Base = b;
 }
Exemplo n.º 3
0
 internal WinConditionProxy(CustomExpHandlerBase b)
 {
     Base = b;
 }