9 lines
195 B
Protocol Buffer
9 lines
195 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
import "FriendBrief.proto";
|
||
|
|
||
|
message GetPlayerFriendListRsp {
|
||
|
int32 retcode = 6;
|
||
|
repeated FriendBrief friend_list = 11;
|
||
|
repeated FriendBrief ask_friend_list = 2;
|
||
|
}
|