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
|
|
|
|
|
|
|
|
|
|
|
|
2023-01-29 02:46:20 +03:00
|
|
|
import "Vector.proto";
|
2023-01-28 17:00:48 +03:00
|
|
|
message DetectorData {
|
|
|
|
bool isHintValid = 2;
|
|
|
|
uint32 configId = 9;
|
2023-01-29 02:46:20 +03:00
|
|
|
Vector hintCenterPos = 3;
|
2023-01-28 17:00:48 +03:00
|
|
|
uint32 materialId = 10;
|
|
|
|
bool isAllCollected = 13;
|
|
|
|
uint32 groupId = 14;
|
|
|
|
uint32 hintRadius = 5;
|
|
|
|
}
|