zxl
/
CTT
forked from Cal/CTT
1
0
Fork 0
CTT/Unity/Assets/Model/Module/ActorLocation/ActorResponse.cs

16 lines
361 B
C#
Raw Normal View History

2021-04-08 20:09:59 +08:00
using ProtoBuf;
namespace ET
{
[Message(ushort.MaxValue)]
[ProtoContract]
public partial class ActorResponse: ProtoObject, IActorResponse
{
[ProtoMember(1)]
public int RpcId { get; set; }
[ProtoMember(2)]
public int Error { get; set; }
[ProtoMember(3)]
public string Message { get; set; }
}
}