GC-Proto/proto/DetectorData.proto

16 lines
291 B
Protocol Buffer
Raw Normal View History

2023-01-28 17:00:48 +03:00
syntax = "proto3";
2023-01-28 18:50:00 +03:00
option java_package = "emu.grasscutter.net.proto";
2023-01-28 17:00:48 +03:00
import "Vector.proto";
2023-01-28 17:00:48 +03:00
message DetectorData {
bool isHintValid = 2;
uint32 configId = 9;
Vector hintCenterPos = 3;
2023-01-28 17:00:48 +03:00
uint32 materialId = 10;
bool isAllCollected = 13;
uint32 groupId = 14;
uint32 hintRadius = 5;
}