From 313d36adbeed76cbe3bd15a441c0cb9cc88624d0 Mon Sep 17 00:00:00 2001 From: Jason Mitchell Date: Tue, 23 Jul 2024 17:38:11 -0700 Subject: [PATCH] Open up Asset & Source so other mods (Angelica) can use the getAssetBuilder --- src/main/java/glowredman/txloader/Asset.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/glowredman/txloader/Asset.java b/src/main/java/glowredman/txloader/Asset.java index 30ea7df..d9d80f1 100644 --- a/src/main/java/glowredman/txloader/Asset.java +++ b/src/main/java/glowredman/txloader/Asset.java @@ -4,7 +4,7 @@ import java.util.Arrays; import java.util.stream.Collectors; -class Asset { +public class Asset { String resourceLocation; String resourceLocationOverride; @@ -36,7 +36,7 @@ Source getSource() { return this.source == null ? Source.ASSET : this.source; } - enum Source { + public enum Source { ASSET, CLIENT,