9 lines
186 B
Protocol Buffer
9 lines
186 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
import "Vector.proto";
|
||
|
option csharp_namespace = "FurinaImpact.Protocol";
|
||
|
message CurVehicleInfo {
|
||
|
uint32 entity_id = 1;
|
||
|
uint32 pos = 2;
|
||
|
uint32 gadget_id = 3;
|
||
|
}
|