GC-Proto/proto/GivingRecord.proto

17 lines
332 B
Protocol Buffer
Raw Normal View History

2023-02-18 04:48:44 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
2023-04-11 06:14:48 +03:00
// Name: OBDLPMCIFNG
2023-02-18 04:48:44 +03:00
message GivingRecord {
2023-04-11 06:14:48 +03:00
bool is_gadget_giving = 2;
bool is_finished = 13;
uint32 last_group_id = 3;
map<uint32, uint32> material_cnt_map = 9;
uint32 giving_id = 7;
uint32 group_id = 8;
uint32 config_id = 14;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00