mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-01-29 13:42:56 +08:00
11 lines
211 B
Protocol Buffer
11 lines
211 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
message SetUpAvatarTeamRsp {
|
||
|
int32 retcode = 1;
|
||
|
uint32 teamId = 2;
|
||
|
repeated uint64 avatarTeamGuidList = 3;
|
||
|
uint64 curAvatarGuid = 4;
|
||
|
}
|