GC-Proto/proto/BlossomBriefInfo.proto

21 lines
349 B
Protocol Buffer
Raw Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
2023-01-28 18:50:00 +03:00
option java_package = "emu.grasscutter.net.proto";
2022-11-06 15:30:21 +03:00
2023-01-28 17:00:48 +03:00
import "Vector.proto";
2023-01-28 18:50:00 +03:00
2022-11-06 15:30:21 +03:00
message BlossomBriefInfo {
2023-01-28 17:00:48 +03:00
bool isGuideOpened = 6;
uint32 resin = 3;
Vector pos = 9;
2023-01-28 17:00:48 +03:00
uint32 sceneId = 13;
uint32 state = 10;
uint32 cityId = 8;
uint32 rewardId = 11;
uint32 circleCampId = 2;
uint32 monsterLevel = 15;
uint32 refreshId = 5;
2022-11-06 15:30:21 +03:00
}