mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-25 16:09:25 +03:00
17 lines
316 B
Protocol Buffer
17 lines
316 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "SumoTeamData.proto";
|
|
|
|
// Name: BBCNMKKOJFN
|
|
// CmdId: 8005
|
|
message SumoSaveTeamRsp {
|
|
uint32 stage_id = 2;
|
|
uint32 activity_id = 13;
|
|
repeated SumoTeamData team_list = 10;
|
|
uint32 difficulty_id = 8;
|
|
int32 retcode = 3;
|
|
}
|
|
|