| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- syntax = "proto3";
- package ETHotfix;
- message C2R_Login // IRequest
- {
- int32 RpcId = 90;
- string Account = 1; // 帐号
- string Password = 2; // 密码
- }
- message R2C_Login // IResponse
- {
- int32 RpcId = 90;
- int32 Error = 91;
- string Message = 92;
- string Address = 1;
- int64 Key = 2;
- }
- message C2G_LoginGate // IRequest
- {
- int32 RpcId = 90;
- int64 Key = 1; // 帐号
- }
- message G2C_LoginGate // IResponse
- {
- int32 RpcId = 90;
- int32 Error = 91;
- string Message = 92;
- int64 PlayerId = 1;
- }
- message G2C_TestHotfixMessage // IMessage
- {
- string Info = 1;
- }
- message C2M_TestActorRequest // IClientActorRequest
- {
- int32 RpcId = 90;
- int64 ActorId = 91;
- string Info = 1;
- }
- message M2C_TestActorResponse // IClientActorResponse
- {
- int32 RpcId = 90;
- int32 Error = 91;
- string Message = 92;
- string Info = 1;
- }
- message PlayerInfo // IMessage
- {
- int32 RpcId = 90;
- }
- message C2G_PlayerInfo // IRequest
- {
- int32 RpcId = 90;
- }
- message G2C_PlayerInfo // IResponse
- {
- int32 RpcId = 90;
- int32 Error = 91;
- string Message = 92;
- PlayerInfo PlayerInfo = 1;
- repeated PlayerInfo PlayerInfos = 2;
- repeated string TestRepeatedString = 3;
- repeated int32 TestRepeatedInt32 = 4;
- repeated int64 TestRepeatedInt64 = 5;
- }
|