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 31b0dd30e2
commit 0c02ce9f63
7 changed files with 259 additions and 8 deletions

View File

@@ -8,14 +8,15 @@ public class GadgetData extends GameResource {
private int Id;
private String Type;
private String JsonName;
private boolean IsInteractive;
private String[] Tags;
private String ItemJsonName;
private String InteeIconName;
private long NameTextMapHash;
private int CampID;
private String JsonName;
private boolean IsInteractive;
private String[] Tags;
private String ItemJsonName;
private String InteeIconName;
private long NameTextMapHash;
private int CampID;
private String LODPatternName;
@Override
public int getId() {
return this.Id;
@@ -53,6 +54,8 @@ public class GadgetData extends GameResource {
return CampID;
}
public String getLODPatternName() { return LODPatternName; }
@Override
public void onLoad() {