mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-26 16:39:26 +03:00
15 lines
266 B
Protocol Buffer
15 lines
266 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "Vector.proto";
|
|
|
|
// Name: NEOMIACADNF
|
|
message SkyCrystalDetectorData {
|
|
Vector hint_center_pos = 12;
|
|
uint32 group_id = 7;
|
|
uint32 config_id = 14;
|
|
bool is_hint_valid = 6;
|
|
}
|
|
|