/* * Copyright (c) 2018, 2019, 2020 shedaniel * Licensed under the MIT License (the "License"). */ package me.shedaniel.rei.server; import net.minecraft.container.Container; public interface ContainerInfo { Class getContainerClass(); int getCraftingResultSlotIndex(T container); int getCraftingWidth(T container); int getCraftingHeight(T container); void clearCraftingSlots(T container); void populateRecipeFinder(T container, RecipeFinder var1); }