GC-Proto/proto/GroupLinkBundle.proto

17 lines
300 B
Protocol Buffer
Raw Normal View History

2023-02-18 04:48:44 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "Vector.proto";
2023-02-28 04:12:44 +03:00
// Name: DAIJHGFFMFL
2023-02-18 04:48:44 +03:00
message GroupLinkBundle {
2023-02-28 04:12:44 +03:00
uint32 scene_id = 7;
bool is_activated = 11;
Vector center = 1;
uint32 radius = 12;
bool is_show_mark = 6;
uint32 bundle_id = 13;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00