18 lines
419 B
Protocol Buffer
18 lines
419 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "DungeonEntryInfo.proto";
|
|
import "DungeonEntryPointInfo.proto";
|
|
|
|
// Name: DALCJFEAHJH
|
|
// CmdId: 975
|
|
message DungeonEntryInfoRsp {
|
|
uint32 recommend_dungeon_id = 13;
|
|
int32 retcode = 15;
|
|
uint32 point_id = 14;
|
|
repeated DungeonEntryInfo dungeon_entry_list = 4;
|
|
repeated DungeonEntryPointInfo dungeon_entry_point_list = 9;
|
|
}
|
|
|