GC-Proto/proto/AnchorPointData.proto

15 lines
239 B
Protocol Buffer
Raw Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
2023-01-28 17:00:48 +03:00
import "Rotation.proto";
2022-11-06 15:30:21 +03:00
option java_package = "emu.grasscutter.net.proto";
message AnchorPointData {
2023-01-28 17:00:48 +03:00
uint32 sceneId = 15;
Rotation rot = 13;
uint32 endTime = 10;
Rotation pos = 12;
uint32 anchorPointId = 11;
2022-11-06 15:30:21 +03:00
}