GC-Proto/proto/VehicleInfo.proto

16 lines
321 B
Protocol Buffer
Raw Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
2024-08-28 06:45:34 +03:00
2023-01-28 18:50:00 +03:00
option java_package = "emu.grasscutter.net.proto";
2024-08-28 06:45:34 +03:00
// Version: 5.0
2023-05-23 13:12:42 +03:00
import "VehicleMember.proto";
2024-08-28 06:45:34 +03:00
2022-11-06 15:30:21 +03:00
message VehicleInfo {
2024-08-28 06:45:34 +03:00
repeated VehicleMember member_list = 1;
uint32 owner_uid = 2;
float cur_stamina = 3;
uint32 GPMPAEGBEJE = 4;
float LLGKENMIENL = 5;
uint32 anim_hash = 6;
2022-11-06 15:30:21 +03:00
}