mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-13 21:54:38 +03:00
16 lines
310 B
Protocol Buffer
16 lines
310 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "SumoTeamData.proto";
|
|
|
|
// Name: IAIKNJPDOJB
|
|
// CmdId: 8930
|
|
message SumoSelectTeamAndEnterDungeonReq {
|
|
repeated SumoTeamData team_list = 6;
|
|
uint32 stage_id = 14;
|
|
uint32 activity_id = 1;
|
|
uint32 difficulty_id = 11;
|
|
}
|
|
|