mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-01 15:54:44 +03:00
15 lines
265 B
Protocol Buffer
15 lines
265 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "Vector.proto";
|
|
|
|
// Name: MEDHAFCLIHB
|
|
message SkyCrystalDetectorData {
|
|
uint32 group_id = 9;
|
|
uint32 config_id = 13;
|
|
bool is_hint_valid = 5;
|
|
Vector hint_center_pos = 4;
|
|
}
|
|
|