mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-25 16:09:25 +03:00
16 lines
378 B
Protocol Buffer
16 lines
378 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
// Version: 5.0
|
|
// CmdId: 25075
|
|
|
|
import "ChapterState.proto";
|
|
import "NeedPlayerLevel.proto";
|
|
import "NeedBeginTime.proto";
|
|
|
|
message ChapterStateNotify {
|
|
uint32 chapter_id = 1;
|
|
ChapterState chapter_state = 2;
|
|
NeedPlayerLevel need_player_level = 8;
|
|
NeedBeginTime need_begin_time = 11;
|
|
}
|