Created NPC types and created the config needed to load them

This commit is contained in:
2023-09-21 00:18:10 +02:00
parent 816af4d421
commit 140a0f0e97
18 changed files with 760 additions and 7 deletions
@@ -0,0 +1,7 @@
package com.alttd.fishingevent.util;
import org.bukkit.Material;
import org.jetbrains.annotations.Nullable;
public record NPCCreateData(Skin skin, String simpleId, String name, @Nullable Material mainHand, @Nullable Material offHand) {
}
@@ -0,0 +1,5 @@
package com.alttd.fishingevent.util;
public record Skin(String texture, String signature) {
}