SiegeMachines/src/main/java/magistu/siegemachines/block/StacksCraftingInventory.java
2022-11-17 00:46:50 +03:00

13 lines
360 B
Java

package magistu.siegemachines.block;
import net.minecraft.inventory.CraftingInventory;
import net.minecraft.inventory.container.Container;
public class StacksCraftingInventory extends CraftingInventory
{
public StacksCraftingInventory(Container p_i1807_1_, int p_i1807_2_, int p_i1807_3_)
{
super(p_i1807_1_, p_i1807_2_, p_i1807_3_);
}
}