IndustrialWires/src/main/java/malte0811/industrialWires/blocks/BlockTypes_IC2_Connector.java
malte0811 1fee68c9ef changed wires to use different amounts of cable for different length connections
added Glass Fiber Wire
changed the amount of connectors/relays produced per crafting
WARNING: this commit won't work with the public IE builds currently available
2016-09-22 20:32:38 +02:00

32 lines
511 B
Java

package malte0811.industrialWires.blocks;
import blusunrize.immersiveengineering.common.blocks.BlockIEBase.IBlockEnum;
public enum BlockTypes_IC2_Connector implements IBlockEnum {
TIN_CONN,
TIN_RELAY,
COPPER_CONN,
COPPER_RELAY,
GOLD_CONN,
GOLD_RELAY,
HV_CONN,
HV_RELAY,
GLASS_CONN,
GLASS_RELAY;
@Override
public String getName() {
return toString().toLowerCase();
}
@Override
public int getMeta() {
return ordinal();
}
@Override
public boolean listForCreative() {
return true;
}
}