mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-25 16:09:25 +03:00
14 lines
320 B
Protocol Buffer
14 lines
320 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
import "OfficialCustomDungeon.proto";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
// 3.2
|
|
message UgcActivityDetailInfo {
|
|
bool is_ugc_feature_closed = 10;
|
|
uint32 custom_dungeon_group_id = 12;
|
|
repeated OfficialCustomDungeon official_custom_dungeon_list = 5;
|
|
bool is_enable_ugc = 11;
|
|
}
|