add recipes for most stuff

This commit is contained in:
Raoul Van den Berge
2015-12-23 03:59:39 +01:00
parent 7044d56ecb
commit d0fbc2f540
10 changed files with 227 additions and 1 deletions

View File

@@ -1,10 +1,14 @@
package storagecraft;
import storagecraft.item.ItemCore;
import storagecraft.item.ItemStorageCell;
import storagecraft.item.ItemStorigiumIngot;
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 ItemCore CORE = new ItemCore();
}