GC-Proto/proto/PlayerLocationInfo.proto
2023-08-23 01:09:33 +08:00

12 lines
178 B
Protocol Buffer

syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "Vector.proto";
message PlayerLocationInfo {
uint32 uid = 1;
Vector pos = 2;
Vector rot = 3;
}