using ProtoBuf;
using Thousandto.Plugins.Common;

namespace Thousandto.Code.Logic.Network
{
    /// <summary>
    /// 定义消息的回调方法,便于实现
    /// </summary>
    public partial interface  IHandleMsgResult
    {
        void GS2U_ResCards(MSG_Card.ResCards result);
        void GS2U_ResSmeltResult(MSG_Card.ResSmeltResult result);
        void GS2U_ResUpdateAward(MSG_Card.ResUpdateAward result);
        void GS2U_ResCardLevel(MSG_Card.ResCardLevel result);

    }
}