18 lines
416 B
Protocol Buffer
18 lines
416 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "DungeonEntryInfo.proto";
|
|
import "DungeonEntryPointInfo.proto";
|
|
|
|
// CmdId: 996
|
|
// Name: NJOCOAEINCL
|
|
message DungeonEntryInfoRsp {
|
|
repeated DungeonEntryPointInfo dungeon_entry_point_list = 7;
|
|
uint32 recommend_dungeon_id = 2;
|
|
uint32 point_id = 8;
|
|
int32 retcode = 5;
|
|
repeated DungeonEntryInfo dungeon_entry_list = 9;
|
|
}
|
|
|