17 lines
495 B
C#
17 lines
495 B
C#
|
using ProtoBuf;
|
||
|
using Thousandto.Plugins.Common;
|
||
|
|
||
|
namespace Thousandto.Code.Logic.Network
|
||
|
{
|
||
|
|
||
|
/// <summary>
|
||
|
/// 实现消息的回调方法
|
||
|
/// </summary>
|
||
|
public partial class HandleMsgResult : IHandleMsgResult
|
||
|
{
|
||
|
public void GS2U_ResStateStifleBase( MSG_StateStifle.ResStateStifleBase result ){}
|
||
|
public void GS2U_ResSoulSpiritInfo(MSG_StateStifle.ResSoulSpiritInfo result) { }
|
||
|
public void GS2U_ResUpLevel(MSG_StateStifle.ResUpLevel result) { }
|
||
|
}
|
||
|
}
|