16 lines
710 B
Java
Executable File
16 lines
710 B
Java
Executable File
package storagecraft;
|
|
|
|
import storagecraft.item.*;
|
|
|
|
public final class StorageCraftItems
|
|
{
|
|
public static final ItemStorageCell STORAGE_CELL = new ItemStorageCell();
|
|
public static final ItemWirelessGrid WIRELESS_GRID = new ItemWirelessGrid();
|
|
public static final ItemWirelessGridPlate WIRELESS_GRID_PLATE = new ItemWirelessGridPlate();
|
|
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();
|
|
public static final ItemStoragePart STORAGE_PART = new ItemStoragePart();
|
|
}
|