Domain.IGame_PayloadTable.Join_Invoke.IPayloadObserverUpdatable C# (CSharp) Method

IPayloadObserverUpdatable() public method

public IPayloadObserverUpdatable ( Action updater ) : void
updater Action
return void
            void IPayloadObserverUpdatable.Update(Action<IInterfacedObserver> updater)
            {
                if (observer != null)
                {
                    updater(observer);
                }
                if (observerForUserActor != null)
                {
                    updater(observerForUserActor);
                }
            }
        }