17 lines
309 B
Protocol Buffer
17 lines
309 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
|
|
|
|
import "Rotation.proto";
|
|
import "RotationSpeed.proto";
|
|
import "ShapeType.proto";
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
message ToTheMoonObstacleInfo {
|
|
Rotation center = 3;
|
|
int32 handleId = 5;
|
|
RotationSpeed rotation = 8;
|
|
Rotation halfExtents = 9;
|
|
ShapeType type = 1;
|
|
}
|