equivalent-exchange-3/src/main/java/com/pahimar/ee3/util/ResourceLocationHelper.java
2023-01-03 17:47:36 +01:00

15 lines
447 B
Java

package com.pahimar.ee3.util;
import com.pahimar.ee3.reference.Reference;
import net.minecraft.util.ResourceLocation;
public class ResourceLocationHelper {
public static ResourceLocation getResourceLocation(String modId, String path) {
return new ResourceLocation(modId, path);
}
public static ResourceLocation getResourceLocation(String path) {
return getResourceLocation(Reference.LOWERCASE_MOD_ID, path);
}
}