12 lines
385 B
Java
12 lines
385 B
Java
|
package net.minecraft.client.renderer.texture;
|
||
|
|
||
|
import java.io.IOException;
|
||
|
import java.nio.file.Path;
|
||
|
import net.minecraft.resources.ResourceLocation;
|
||
|
import net.minecraftforge.api.distmarker.Dist;
|
||
|
import net.minecraftforge.api.distmarker.OnlyIn;
|
||
|
|
||
|
@OnlyIn(Dist.CLIENT)
|
||
|
public interface Dumpable {
|
||
|
void dumpContents(ResourceLocation p_276124_, Path p_276123_) throws IOException;
|
||
|
}
|