19 lines
379 B
Protocol Buffer
19 lines
379 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "Vector.proto";
|
|
|
|
// Name: NADLILFDAMD
|
|
message VehicleLocationInfo {
|
|
repeated uint32 uid_list = 10;
|
|
uint32 entity_id = 5;
|
|
uint32 gadget_id = 12;
|
|
Vector pos = 13;
|
|
Vector rot = 14;
|
|
uint32 owner_uid = 1;
|
|
float cur_hp = 11; //KCCDNGMKBOB
|
|
float max_hp = 7; //MILGENBLEAK
|
|
}
|
|
|