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

AddHandler() public method

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