blob: 6b2dd49b034d594f0350c50d4e7c57a139fe6c47 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/*
* 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<T extends Container> {
Class<? extends Container> getContainerClass();
int getCraftingResultSlotIndex(T container);
int getCraftingWidth(T container);
int getCraftingHeight(T container);
void clearCraftingSlots(T container);
void populateRecipeFinder(T container, RecipeFinder var1);
}
|