Fix something and implement weapon entities

This commit is contained in:
StartForKiller
2023-05-30 18:22:43 -04:00
committed by KingRainbow44
Unverified
parent 16ec2e3d40
commit 815ba3e3e3
9 changed files with 137 additions and 27 deletions
@@ -8,6 +8,7 @@ import emu.grasscutter.data.ResourceType;
public class CodexWeaponData extends GameResource {
private int Id;
private int weaponId;
private int gadgetId;
private int sortOrder;
public int getSortOrder() {
@@ -18,6 +19,10 @@ public class CodexWeaponData extends GameResource {
return weaponId;
}
public int getGadgetId() {
return weaponId;
}
public int getId() {
return Id;
}