mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-12 08:49:26 +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: JMNNFOLFPPF
|
|
message RoguelikeDungeonActivityDetailInfo {
|
|
repeated uint32 rune_list = 13;
|
|
bool is_content_closed = 2;
|
|
uint32 content_close_time = 1;
|
|
repeated RogueStageInfo stage_list = 14;
|
|
repeated RoguelikeShikigamiRecord shikigami_list = 3;
|
|
repeated uint32 equipped_rune_list = 7;
|
|
}
|
|
|