soiz1's picture
Upload folder using huggingface_hub
d46f4a3 verified
package net.minecraft.client.renderer.texture;
import java.io.IOException;
import net.minecraft.resources.ResourceLocation;
import net.minecraft.server.packs.resources.ResourceManager;
import net.minecraftforge.api.distmarker.Dist;
import net.minecraftforge.api.distmarker.OnlyIn;
@OnlyIn(Dist.CLIENT)
public class SimpleTexture extends ReloadableTexture {
public SimpleTexture(ResourceLocation p_118133_) {
super(p_118133_);
}
@Override
public TextureContents loadContents(ResourceManager p_376679_) throws IOException {
return TextureContents.load(p_376679_, this.resourceId());
}
}