8 lines
215 B
Protocol Buffer
8 lines
215 B
Protocol Buffer
syntax = "proto3";
|
|
import "VehicleMember.proto";
|
|
option csharp_namespace = "FurinaImpact.Protocol";
|
|
message VehicleInfo {
|
|
repeated VehicleMember member_list = 1;
|
|
uint32 owner_uid = 2;
|
|
float cur_stamina = 3;
|
|
}
|