13 lines
291 B
Protocol Buffer
13 lines
291 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
import "CrystalLinkTeamInfo.proto";
|
||
|
|
||
|
// 4.6.0
|
||
|
// CmdId: 8016
|
||
|
message CrystalLinkEnterDungeonRsp {
|
||
|
int32 retcode = 7;
|
||
|
uint32 difficulty_id = 8;
|
||
|
uint32 level_id = 10;
|
||
|
repeated CrystalLinkTeamInfo team_info_list = 14;
|
||
|
}
|