Protocol
項目使用protobuff作為消息傳輸
一、修改 Protocol 消息內容
//请求公告
message C2L_GetAnnouncement // IUserRequest
{
int32 RpcId = 90;
int64 UserId = 91;
}
message L2C_GetAnnouncement // IResponse
{
int32 RpcId = 90;
int32 Error = 91;
string Message = 92;
}二、更新 Protocol
Last updated