16 lines
364 B
C#
16 lines
364 B
C#
|
using ProtoBuf;
|
||
|
using Thousandto.Plugins.Common;
|
||
|
|
||
|
namespace Thousandto.Code.Logic.Network
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 定义消息的回调方法,便于实现
|
||
|
/// </summary>
|
||
|
public partial interface IHandleMsgResult
|
||
|
{
|
||
|
void GS2U_ResRecycle(MSG_Recycle.ResRecycle result);
|
||
|
void GS2U_ResSetAuto(MSG_Recycle.ResSetAuto result);
|
||
|
|
||
|
}
|
||
|
}
|