GC-Proto/proto/VehicleInteractReq.proto

13 lines
267 B
Protocol Buffer
Raw Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
2023-01-28 18:50:00 +03:00
option java_package = "emu.grasscutter.net.proto";
import "VehicleInteractType.proto";
2024-08-21 04:48:06 +03:00
// 4.7.0
// CmdId: 5099
// Obf: ?
2022-11-06 15:30:21 +03:00
message VehicleInteractReq {
2024-08-21 04:48:06 +03:00
uint32 entity_id = 1;
uint32 pos = 2;
VehicleInteractType interact_type = 14;
bool uk1 = 4;
2022-11-06 15:30:21 +03:00
}