TransferRecipeDisplay.java 487 B

123456789101112131415161718192021
  1. /*
  2. * Copyright (c) 2018, 2019, 2020 shedaniel
  3. * Licensed under the MIT License (the "License").
  4. */
  5. package me.shedaniel.rei.api;
  6. import me.shedaniel.rei.server.ContainerInfo;
  7. import net.minecraft.container.Container;
  8. import java.util.List;
  9. public interface TransferRecipeDisplay extends RecipeDisplay {
  10. int getWidth();
  11. int getHeight();
  12. List<List<EntryStack>> getOrganisedInputEntries(ContainerInfo<Container> containerInfo, Container container);
  13. }