minecraft-src/net/minecraft/client/resources/model/ResolvableModel.java
2025-07-04 03:45:38 +03:00

15 lines
416 B
Java

package net.minecraft.client.resources.model;
import net.fabricmc.api.EnvType;
import net.fabricmc.api.Environment;
import net.minecraft.resources.ResourceLocation;
@Environment(EnvType.CLIENT)
public interface ResolvableModel {
void resolveDependencies(ResolvableModel.Resolver resolver);
@Environment(EnvType.CLIENT)
public interface Resolver {
void markDependency(ResourceLocation resourceLocation);
}
}