Spaces:
Build error
Build error
File size: 623 Bytes
d46f4a3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
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());
}
} |