GC-Proto/proto/GadgetPlayInfo.proto

18 lines
336 B
Protocol Buffer
Raw Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
2023-01-28 18:50:00 +03:00
option java_package = "emu.grasscutter.net.proto";
2022-11-06 15:30:21 +03:00
2023-01-28 17:00:48 +03:00
import "CrucibleInfo.proto";
2022-11-06 15:30:21 +03:00
message GadgetPlayInfo {
2023-01-28 17:00:48 +03:00
uint32 playType = 1;
uint32 duration = 2;
repeated uint32 progressStageList = 3;
uint32 startCd = 4;
uint32 startTime = 5;
uint32 progress = 6;
2023-01-29 06:17:24 +03:00
oneof play_info {
2023-01-28 17:00:48 +03:00
CrucibleInfo crucible_info = 21;
}
2022-11-06 15:30:21 +03:00
}