mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-23 22:54:29 +00:00
18 lines
346 B
Protocol Buffer
18 lines
346 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "GadgetCrucibleInfo.proto";
|
|
|
|
message GadgetPlayInfo {
|
|
uint32 playType = 1;
|
|
uint32 duration = 2;
|
|
repeated uint32 progressStageList = 3;
|
|
uint32 startCd = 4;
|
|
uint32 startTime = 5;
|
|
uint32 progress = 6;
|
|
oneof playInfo {
|
|
GadgetCrucibleInfo crucibleInfo = 21;
|
|
}
|
|
}
|