mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +03:00
17 lines
333 B
Protocol Buffer
17 lines
333 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
// Name: KOHDDNNKDAG
|
|
message GivingRecord {
|
|
uint32 config_id = 13;
|
|
bool is_finished = 5;
|
|
bool is_gadget_giving = 7;
|
|
uint32 giving_id = 14;
|
|
map<uint32, uint32> material_cnt_map = 10;
|
|
uint32 group_id = 4;
|
|
uint32 last_group_id = 9;
|
|
}
|
|
|