mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-12 17:00:24 +03:00
16 lines
259 B
Protocol Buffer
16 lines
259 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
|
|
|
|
import "Rotation.proto";
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
message GroupLinkBundle {
|
|
bool isActivated = 7;
|
|
Rotation center = 6;
|
|
uint32 sceneId = 8;
|
|
uint32 radius = 13;
|
|
bool isShowMark = 12;
|
|
uint32 bundleId = 9;
|
|
}
|