GC-Proto/proto/GadgetPlayInfo.proto

18 lines
353 B
Protocol Buffer
Raw Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
2023-08-22 20:09:33 +03:00
import "GadgetCrucibleInfo.proto";
2022-11-06 15:30:21 +03:00
message GadgetPlayInfo {
2023-08-22 20:09:33 +03:00
uint32 play_type = 1;
uint32 duration = 2;
repeated uint32 progress_stage_list = 3;
uint32 start_cd = 4;
uint32 start_time = 5;
uint32 progress = 6;
2023-08-22 20:23:37 +03:00
oneof play_info {
GadgetCrucibleInfo crucible_info = 21;
}
2022-11-06 15:30:21 +03:00
}