mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-25 16:09:25 +03:00
18 lines
464 B
Protocol Buffer
18 lines
464 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "RoguelikeShikigamiRecord.proto";
|
|
import "RogueStageInfo.proto";
|
|
|
|
// Name: BIDMFHCLPHG
|
|
message RoguelikeDungeonActivityDetailInfo {
|
|
repeated RoguelikeShikigamiRecord shikigami_list = 14;
|
|
uint32 content_close_time = 4;
|
|
repeated uint32 rune_list = 6;
|
|
repeated uint32 equipped_rune_list = 11;
|
|
repeated RogueStageInfo stage_list = 8;
|
|
bool is_content_closed = 5;
|
|
}
|
|
|