AE2 First Commit, the dawn of 1.7 hast arrived.
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
package appeng.integration.abstraction;
|
||||
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.tileentity.TileEntity;
|
||||
import appeng.api.storage.IMEInventory;
|
||||
|
||||
public interface IFZ
|
||||
{
|
||||
|
||||
ItemStack barrelGetItem(TileEntity te);
|
||||
|
||||
int barrelGetMaxItemCount(TileEntity te);
|
||||
|
||||
int barrelGetItemCount(TileEntity te);
|
||||
|
||||
void setItemType(TileEntity te, ItemStack input);
|
||||
|
||||
void barrelSetCount(TileEntity te, int max);
|
||||
|
||||
IMEInventory getFactorizationBarrel(TileEntity te);
|
||||
|
||||
boolean isBarrel(TileEntity te);
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user