mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-25 16:09:25 +03:00
17 lines
398 B
Protocol Buffer
17 lines
398 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "ChannelerSlabChallenge.proto";
|
|
import "ChannelerSlabOneoffDungeon.proto";
|
|
|
|
// Name: HJBDMAOCNLB
|
|
message ChannelerSlabChallengeStage {
|
|
bool is_open = 7;
|
|
uint32 stage_id = 12;
|
|
uint32 open_time = 3;
|
|
ChannelerSlabOneoffDungeon dungeon_info = 15;
|
|
repeated ChannelerSlabChallenge challenge_list = 11;
|
|
}
|
|
|