mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-26 07:39:25 +03:00
16 lines
438 B
Protocol Buffer
16 lines
438 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
// Version: 5.0
|
|
// CmdId: 3263
|
|
|
|
import "UgcDungeonStarredRoomData.proto";
|
|
import "UgcDungeonBrief.proto";
|
|
import "GetUgcDungeonBriefType.proto";
|
|
|
|
message GetUgcDungeonBriefListRsp {
|
|
repeated UgcDungeonStarredRoomData starred_room_list = 7;
|
|
repeated UgcDungeonBrief brief_list = 8;
|
|
int32 retcode = 9;
|
|
GetUgcDungeonBriefType get_brief_type = 12;
|
|
}
|