move proto to submodule

This commit is contained in:
wetabq
2022-04-25 16:17:42 +08:00
parent 7f5e053290
commit 1bdec08806
439 changed files with 5371 additions and 2625 deletions

16
proto/GadgetPlayInfo.proto Normal file → Executable file
View File

@@ -5,13 +5,13 @@ 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;
oneof PlayInfo {
GadgetCrucibleInfo crucible_info = 21;
}
uint32 play_type = 1;
uint32 duration = 2;
repeated uint32 progress_stage_list = 3;
uint32 start_cd = 4;
uint32 start_time = 5;
uint32 progress = 6;
}