Spaces:
Build error
Build error
package net.minecraft.client.model.geom; | |
import net.minecraft.resources.ResourceLocation; | |
import net.minecraftforge.api.distmarker.Dist; | |
import net.minecraftforge.api.distmarker.OnlyIn; | |
public record ModelLayerLocation(ResourceLocation model, String layer) { | |
public String toString() { | |
return this.model + "#" + this.layer; | |
} | |
} |