Remove gitmodules
Integrate api and lang into core
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
package appeng.api.implementations.tiles;
|
||||
|
||||
import net.minecraft.inventory.IInventory;
|
||||
|
||||
public interface ISegmentedInventory
|
||||
{
|
||||
|
||||
/**
|
||||
* Access an internal inventory, note, not all inventories contain real items, some may be ghost items, and treating
|
||||
* them a real inventories will result in duplication.
|
||||
*
|
||||
* @param name inventory name
|
||||
* @return inventory with inventory name
|
||||
*/
|
||||
IInventory getInventoryByName(String name);
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user