mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +03:00
17 lines
333 B
Protocol Buffer
17 lines
333 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "SumoTeamData.proto";
|
|
|
|
// CmdId: 8280
|
|
// Name: IDFGDEOPGLI
|
|
message SumoSelectTeamAndEnterDungeonRsp {
|
|
uint32 activity_id = 7;
|
|
uint32 difficulty_id = 10;
|
|
int32 retcode = 1;
|
|
uint32 stage_id = 5;
|
|
repeated SumoTeamData team_list = 15;
|
|
}
|
|
|