mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-01 15:54:44 +03:00
16 lines
261 B
Protocol Buffer
16 lines
261 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "Vector.proto";
|
|
|
|
// CmdId: 839
|
|
// Name: EMIMBIBNOKI
|
|
message CreateVehicleReq {
|
|
Vector rot = 6;
|
|
uint32 scene_point_id = 12;
|
|
uint32 vehicle_id = 8;
|
|
Vector pos = 14;
|
|
}
|
|
|