mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-04-04 16:16:06 +03:00
26 lines
505 B
Protocol Buffer
26 lines
505 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "ChapterState.proto";
|
|
|
|
// CmdId: 498
|
|
// EnetChannelId: 0
|
|
// EnetIsReliable: true
|
|
message ChapterStateNotify {
|
|
uint32 chapter_id = 1;
|
|
ChapterState chapter_state = 12;
|
|
NeedPlayerLevel need_player_level = 10;
|
|
NeedBeginTime need_begin_time = 14;
|
|
|
|
message NeedPlayerLevel {
|
|
bool is_limit = 1;
|
|
uint32 config_need_player_level = 2;
|
|
}
|
|
|
|
message NeedBeginTime {
|
|
bool is_limit = 1;
|
|
uint32 config_need_begin_time = 2;
|
|
}
|
|
}
|