Applied-Energistics-2-tiler.../items/storage/ItemCreativeStorageCell.java

18 lines
367 B
Java
Raw Normal View History

package appeng.items.storage;
import java.util.EnumSet;
import appeng.core.features.AEFeature;
import appeng.items.AEBaseItem;
public class ItemCreativeStorageCell extends AEBaseItem
{
public ItemCreativeStorageCell() {
super( ItemCreativeStorageCell.class );
setfeature( EnumSet.of( AEFeature.StorageCells, AEFeature.Creative ) );
maxStackSize = 1;
}
}