aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/me/shedaniel/rei/api/TransferRecipeDisplay.java
blob: 3e7087c7af4fef6229e62a636d22add4e39e8d80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * 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);
    
}