mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-04-03 07:36:07 +03:00
14 lines
231 B
Protocol Buffer
14 lines
231 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "Vector.proto";
|
|
|
|
message AnchorPointData {
|
|
uint32 anchor_point_id = 1;
|
|
Vector pos = 2;
|
|
Vector rot = 3;
|
|
uint32 end_time = 4;
|
|
uint32 scene_id = 5;
|
|
}
|