| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- 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 // IActorRequest
- {
- int32 RpcId = 90;
- int64 ActorId = 91;
- string Info = 1;
- }
- message M2C_TestActorResponse // IActorResponse
- {
- 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 PlayerInfos = 1;
- }
|