GC-Proto/proto/GadgetGeneralRewardInfo.proto

14 lines
281 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 "ItemParam.proto";
2022-11-06 15:30:21 +03:00
message GadgetGeneralRewardInfo {
2023-08-22 20:09:33 +03:00
uint32 resin = 1;
uint32 dead_time = 2;
repeated uint32 remain_uid_list = 3;
repeated uint32 qualify_uid_list = 4;
ItemParam item_param = 5;
2022-11-06 15:30:21 +03:00
}