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;
|
||
|
}
|