18 lines
546 B
C#
18 lines
546 B
C#
using ProtoBuf;
|
|
using Thousandto.Plugins.Common;
|
|
|
|
namespace Thousandto.Code.Logic.Network
|
|
{
|
|
/// <summary>
|
|
/// 定义消息的回调方法,便于实现
|
|
/// </summary>
|
|
public partial interface IHandleMsgResult
|
|
{
|
|
void GS2U_ResSettingInfo(MSG_Setting.ResSettingInfo result);
|
|
void GS2U_ResCommitFeedback(MSG_Setting.ResCommitFeedback result);
|
|
void GS2U_ResGMFeedback(MSG_Setting.ResGMFeedback result);
|
|
void GS2U_ResChangeServerNameSuccess(MSG_Setting.ResChangeServerNameSuccess result);
|
|
|
|
}
|
|
}
|