Working on drive design.

Several particle crash fixes.
This commit is contained in:
Sebastian Hartte
2020-06-15 22:20:29 +02:00
parent 2356a38898
commit d50dcc31fa
33 changed files with 748 additions and 760 deletions
@@ -27,6 +27,9 @@ package appeng.api.implementations.tiles;
import appeng.api.networking.IGridHost;
import appeng.api.storage.ICellContainer;
import appeng.api.util.IOrientable;
import net.minecraft.item.Item;
import javax.annotation.Nullable;
public interface IChestOrDrive extends ICellContainer, IGridHost, IOrientable
@@ -63,4 +66,11 @@ public interface IChestOrDrive extends ICellContainer, IGridHost, IOrientable
* @return is the cell currently blinking to show activity.
*/
boolean isCellBlinking( int slot );
/**
* Returns the item of the cell in the given slot or null.
*/
@Nullable
Item getCellItem(int slot );
}