11 lines
167 B
Protocol Buffer
11 lines
167 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
|
||
|
import "VehicleMember.proto";
|
||
|
|
||
|
message VehicleInfo {
|
||
|
repeated VehicleMember member_list = 1;
|
||
|
uint32 owner_uid = 2;
|
||
|
float cur_stamina = 3;
|
||
|
}
|