Spaces:
Build error
Build error
package net.minecraft.client.resources.model; | |
import com.mojang.math.Transformation; | |
import net.minecraftforge.api.distmarker.Dist; | |
import net.minecraftforge.api.distmarker.OnlyIn; | |
public interface ModelState { | |
default Transformation getRotation() { | |
return Transformation.identity(); | |
} | |
default boolean isUvLocked() { | |
return false; | |
} | |
} |