fabric-renderer-api-v1-7.2.3+9be2a36e6f.jar

Download file
    package net.fabricmc.fabric.api.renderer.v1.model;

import java.util.List;
import net.fabricmc.api.EnvType;
import net.fabricmc.api.Environment;
import net.fabricmc.fabric.api.renderer.v1.mesh.Mesh;
import net.minecraft.class_10817;

@Environment(EnvType.CLIENT)
public final class MeshBakedGeometry extends class_10817 {
   private final Mesh mesh;

   public MeshBakedGeometry(Mesh mesh) {
      super(List.of(), List.of(), List.of(), List.of(), List.of(), List.of(), List.of(), List.of());
      this.mesh = mesh;
   }

   public Mesh getMesh() {
      return this.mesh;
   }
}
    
Download file