using System;
using System.Collections.Generic;

using System.Text;

namespace Thousandto.Code.Logic
{
    /// <summary>
    /// 用于logic代码和UI代码中间转换,避免logic代码直接使用NGUI的内容
    /// </summary>
    public interface IChatSystemTool
    {
        IEnumerable<ChatNode> calcMutiLine(int channel, IEnumerable<ChatNode> nodes, object label, int maxLineWidth);

    }
}