mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-13 01:09:26 +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";
|
|
|
|
// Name: CBJKGAIOOGN
|
|
// CmdId: 8607
|
|
message SumoSaveTeamReq {
|
|
repeated SumoTeamData team_list = 11;
|
|
uint32 activity_id = 10;
|
|
uint32 difficulty_id = 12;
|
|
uint32 stage_id = 9;
|
|
}
|
|
|