add solderer, processors, silicon, quartz enriched iron

This commit is contained in:
Raoul Van den Berge
2015-12-23 14:12:23 +01:00
parent d0fbc2f540
commit 06fa4555cb
32 changed files with 785 additions and 58 deletions

View File

@@ -1,14 +1,18 @@
package storagecraft;
import storagecraft.item.ItemCore;
import storagecraft.item.ItemProcessor;
import storagecraft.item.ItemSilicon;
import storagecraft.item.ItemStorageCell;
import storagecraft.item.ItemStorigiumIngot;
import storagecraft.item.ItemQuartzEnrichedIron;
import storagecraft.item.ItemWirelessGrid;
public class StorageCraftItems
{
public static final ItemStorageCell STORAGE_CELL = new ItemStorageCell();
public static final ItemWirelessGrid WIRELESS_GRID = new ItemWirelessGrid();
public static final ItemStorigiumIngot STORIGIUM_INGOT = new ItemStorigiumIngot();
public static final ItemQuartzEnrichedIron QUARTZ_ENRICHED_IRON = new ItemQuartzEnrichedIron();
public static final ItemCore CORE = new ItemCore();
public static final ItemSilicon SILICON = new ItemSilicon();
public static final ItemProcessor PROCESSOR = new ItemProcessor();
}