Applied-Energistics-2-tiler.../items/storage/ItemCreativeStorageCell.java
2013-12-27 16:59:59 -06:00

17 lines
367 B
Java

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;
}
}