GC-Proto/proto/ToTheMoonObstacleInfo.proto

17 lines
309 B
Protocol Buffer
Raw Normal View History

2023-01-28 17:00:48 +03:00
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;
}