mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-23 20:34:49 +00:00
b392849577
* [BREAK] proto auto compiled by gradle * [BREAK] move proto to submodule * update gitmodules * [BREAK] move proto to submodule * move proto to submodule * fix merge conflict * fix github action after merging * fix merge conflicts and del submodule * upload the proto
19 lines
353 B
Protocol Buffer
19 lines
353 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "Vector.proto";
|
|
|
|
message BlossomBriefInfo {
|
|
uint32 refresh_id = 1;
|
|
uint32 circle_camp_id = 2;
|
|
uint32 city_id = 3;
|
|
uint32 resin = 4;
|
|
Vector pos = 5;
|
|
uint32 reward_id = 6;
|
|
uint32 monster_level = 7;
|
|
bool is_guide_opened = 8;
|
|
uint32 state = 9;
|
|
uint32 scene_id = 10;
|
|
}
|