mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-04-14 04:56:06 +03:00
16 lines
273 B
Protocol Buffer
16 lines
273 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
|
|
|
|
message BlossomChestInfo {
|
|
uint32 resin = 1;
|
|
repeated uint32 qualifyUidList = 2;
|
|
repeated uint32 remainUidList = 3;
|
|
uint32 deadTime = 4;
|
|
uint32 blossomRefreshType = 5;
|
|
uint32 refreshId = 6;
|
|
}
|