18 lines
576 B
C#
18 lines
576 B
C#
|
using ProtoBuf;
|
||
|
using Thousandto.Plugins.Common;
|
||
|
|
||
|
namespace Thousandto.Code.Logic.Network
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 定义消息的回调方法,便于实现
|
||
|
/// </summary>
|
||
|
public partial interface IHandleMsgResult
|
||
|
{
|
||
|
void GS2U_ResGetUpdateRewardResult(MSG_UpdateReward.ResGetUpdateRewardResult result);
|
||
|
void GS2U_ResUpdateReward(MSG_UpdateReward.ResUpdateReward result);
|
||
|
void GS2U_ResGetCommentReward(MSG_UpdateReward.ResGetCommentReward result);
|
||
|
void GS2U_SyncCommentReward(MSG_UpdateReward.SyncCommentReward result);
|
||
|
|
||
|
}
|
||
|
}
|