fabric-rendering-v1-16.2.0+bee81f016f.jar

Download file
    package net.fabricmc.fabric.api.client.rendering.v1;

import net.fabricmc.api.EnvType;
import net.fabricmc.api.Environment;
import net.minecraft.class_3879;
import net.minecraft.class_630;
import org.jetbrains.annotations.Nullable;
import org.jetbrains.annotations.ApiStatus.NonExtendable;

@Environment(EnvType.CLIENT)
@NonExtendable
public interface FabricModel<S> {
   default @Nullable class_630 getChildPart(String name) {
      throw new UnsupportedOperationException("Implemented via mixin");
   }

   default void copyTransforms(class_3879<?> model) {
      throw new UnsupportedOperationException("Implemented via mixin");
   }
}
    
Download file