mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-26 07:39:25 +03:00
18 lines
361 B
Protocol Buffer
18 lines
361 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "Vector.proto";
|
|
|
|
// Name: JEFLHCMKIFB
|
|
message OneoffGatherPointDetectorData {
|
|
Vector hint_center_pos = 4;
|
|
bool is_hint_valid = 11;
|
|
uint32 config_id = 10;
|
|
bool is_all_collected = 5;
|
|
uint32 hint_radius = 1;
|
|
uint32 group_id = 7;
|
|
uint32 material_id = 14;
|
|
}
|
|
|