13 lines
380 B
Java
13 lines
380 B
Java
|
package net.minecraft.client.model.geom;
|
||
|
|
||
|
import net.minecraft.resources.ResourceLocation;
|
||
|
import net.minecraftforge.api.distmarker.Dist;
|
||
|
import net.minecraftforge.api.distmarker.OnlyIn;
|
||
|
|
||
|
@OnlyIn(Dist.CLIENT)
|
||
|
public record ModelLayerLocation(ResourceLocation model, String layer) {
|
||
|
@Override
|
||
|
public String toString() {
|
||
|
return this.model + "#" + this.layer;
|
||
|
}
|
||
|
}
|