GC-Proto/proto/ToTheMoonObstacleInfo.proto
2023-01-28 22:00:48 +08:00

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