GC-Proto/proto/GadgetGeneralRewardInfo.proto

16 lines
277 B
Protocol Buffer
Raw Normal View History

2023-01-28 17:00:48 +03:00
syntax = "proto3";
2023-01-28 18:50:00 +03:00
option java_package = "emu.grasscutter.net.proto";
2023-01-28 17:00:48 +03:00
import "ItemParam.proto";
message GadgetGeneralRewardInfo {
2023-01-28 17:00:48 +03:00
uint32 resin = 1;
uint32 deadTime = 2;
repeated uint32 remainUidList = 3;
repeated uint32 qualifyUidList = 4;
ItemParam itemParam = 5;
}