mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-25 16:09:25 +03:00
17 lines
300 B
Protocol Buffer
17 lines
300 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "Vector.proto";
|
|
|
|
// Name: DAIJHGFFMFL
|
|
message GroupLinkBundle {
|
|
uint32 scene_id = 7;
|
|
bool is_activated = 11;
|
|
Vector center = 1;
|
|
uint32 radius = 12;
|
|
bool is_show_mark = 6;
|
|
uint32 bundle_id = 13;
|
|
}
|
|
|