GC-Proto/proto/CreateVehicleReq.proto

13 lines
205 B
Protocol Buffer
Raw Permalink Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
2023-08-22 20:09:33 +03:00
import "Vector.proto";
2022-11-06 15:30:21 +03:00
message CreateVehicleReq {
2023-08-22 20:09:33 +03:00
uint32 vehicleId = 1;
uint32 pointId = 2;
Vector pos = 3;
Vector rot = 4;
2022-11-06 15:30:21 +03:00
}