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,9 @@
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
enum VehicleInteractType {
VEHICLE_INTERACT_NONE = 0;
VEHICLE_INTERACT_IN = 1;
VEHICLE_INTERACT_OUT = 2;
}