mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-04-11 11:36:07 +03:00
16 lines
294 B
Protocol Buffer
16 lines
294 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "SumoTeamData.proto";
|
|
|
|
// CmdId: 8444
|
|
// Name: JCKKCIOGMPD
|
|
message SumoSaveTeamReq {
|
|
uint32 stage_id = 15;
|
|
uint32 activity_id = 14;
|
|
uint32 difficulty_id = 11;
|
|
repeated SumoTeamData team_list = 3;
|
|
}
|
|
|