mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-25 16:09:25 +03:00
17 lines
283 B
Protocol Buffer
17 lines
283 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
message GivingRecord {
|
||
|
bool isGadgetGiving = 6;
|
||
|
uint32 groupId = 14;
|
||
|
uint32 givingId = 4;
|
||
|
uint32 configId = 7;
|
||
|
uint32 lastGroupId = 8;
|
||
|
bool isFinished = 1;
|
||
|
map<uint32, uint32> materialCountMap = 10;
|
||
|
}
|