mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-03 08:44:36 +03:00
20 lines
399 B
Protocol Buffer
20 lines
399 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
// Name: NBEGCGIOLGP
|
|
message ScenePlayBattleInfo {
|
|
uint32 state = 9;
|
|
repeated uint32 progress_stage_list = 2;
|
|
uint32 mode = 1;
|
|
uint32 progress = 14;
|
|
uint32 start_time = 4;
|
|
uint32 play_id = 11;
|
|
uint32 duration = 3;
|
|
uint32 type = 5;
|
|
uint32 prepare_end_time = 12;
|
|
uint32 play_type = 8;
|
|
}
|
|
|