123456789101112131415161718192021 |
- /*
- * Copyright (c) 2018, 2019, 2020 shedaniel
- * Licensed under the MIT License (the "License").
- */
- package me.shedaniel.rei.api;
- import me.shedaniel.rei.server.ContainerInfo;
- import net.minecraft.container.Container;
- import java.util.List;
- public interface TransferRecipeDisplay extends RecipeDisplay {
-
- int getWidth();
-
- int getHeight();
-
- List<List<EntryStack>> getOrganisedInputEntries(ContainerInfo<Container> containerInfo, Container container);
-
- }
|