Implement HandlerVehicleInteractReq & Rsp and HandlerVehicleSpawnReq & Rsp

Also added opcodes related to vehicles, added LODPatternName to GadgetData and added EntityVehicle class
This commit is contained in:
ayy lmao
2022-04-28 19:38:11 +03:00
committed by memetrollsXD
parent f9cf8f4895
commit 47b0ee2883
13 changed files with 320 additions and 8 deletions

View File

@@ -0,0 +1,11 @@
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "VehicleInteractType.proto";
message VehicleInteractReq {
uint32 entity_id = 1;
VehicleInteractType interact_type = 2;
uint32 pos = 3;
}