Terraria.ModLoader.ModHooks.ChatInput C# (CSharp) Method

ChatInput() static private method

static private ChatInput ( string text ) : void
text string
return void
        internal static void ChatInput(string text)
        {
            if (text.Length > 0)
            {
                foreach (Mod mod in ModLoader.mods.Values)
                {
                    mod.ChatInput(text);
                }
            }
        }