Codebreak.Service.World.Network.MessageDispatcher.SafeAddHandler C# (CSharp) Method

SafeAddHandler() public method

public SafeAddHandler ( Action method ) : void
method Action
return void
        public virtual void SafeAddHandler(Action<string> method)
        {
            AddMessage(() =>
                {
                    OnMessage += method;
                });
        }