Whoops Missing file.
This commit is contained in:
parent
8bcd346226
commit
37440cdcbe
1 changed files with 53 additions and 0 deletions
53
integration/IntegrationType.java
Normal file
53
integration/IntegrationType.java
Normal file
|
@ -0,0 +1,53 @@
|
||||||
|
package appeng.integration;
|
||||||
|
|
||||||
|
|
||||||
|
public enum IntegrationType
|
||||||
|
{
|
||||||
|
IC2(IntegrationSide.BOTH, "Industrial Craft 2", "IC2"),
|
||||||
|
|
||||||
|
RotaryCraft(IntegrationSide.BOTH, "Rotary Craft", "RotaryCraft"),
|
||||||
|
|
||||||
|
RC(IntegrationSide.BOTH, "Railcraft", "Railcraft"),
|
||||||
|
|
||||||
|
BC(IntegrationSide.BOTH, "BuildCraft", "BuildCraft|Silicon"),
|
||||||
|
|
||||||
|
MJ6(IntegrationSide.BOTH, "BuildCraft6 Power", null),
|
||||||
|
|
||||||
|
MJ5( IntegrationSide.BOTH, "BuildCraft5 Power", null ),
|
||||||
|
|
||||||
|
RF(IntegrationSide.BOTH, "RedstoneFlux Power - Tiles", null),
|
||||||
|
|
||||||
|
RFItem( IntegrationSide.BOTH, "RedstoneFlux Power - Items", null ),
|
||||||
|
|
||||||
|
MFR( IntegrationSide.BOTH, "Mine Factory Reloaded", "MineFactoryReloaded" ),
|
||||||
|
|
||||||
|
DSU( IntegrationSide.BOTH, "Deep Storage Unit", null ),
|
||||||
|
|
||||||
|
FZ( IntegrationSide.BOTH, "Factorization", "factorization" ),
|
||||||
|
|
||||||
|
FMP( IntegrationSide.BOTH, "Forge MultiPart", "McMultipart" ),
|
||||||
|
|
||||||
|
RB( IntegrationSide.BOTH, "Rotatable Blocks", "RotatableBlocks" ),
|
||||||
|
|
||||||
|
CLApi( IntegrationSide.BOTH, "Colored Lights Core", "coloredlightscore" ),
|
||||||
|
|
||||||
|
Waila( IntegrationSide.CLIENT, "Waila", "Waila" ),
|
||||||
|
|
||||||
|
InvTweaks( IntegrationSide.CLIENT, "Inventory Tweaks", "inventorytweaks" ),
|
||||||
|
|
||||||
|
NEI( IntegrationSide.CLIENT, "Not Enough Items", "NotEnoughItems" ),
|
||||||
|
|
||||||
|
CraftGuide( IntegrationSide.CLIENT, "Craft Guide", "craftguide" );
|
||||||
|
|
||||||
|
|
||||||
|
public final IntegrationSide side;
|
||||||
|
public final String dspName;
|
||||||
|
public final String modID;
|
||||||
|
|
||||||
|
private IntegrationType( IntegrationSide side, String Name, String modid ) {
|
||||||
|
this.side = side;
|
||||||
|
this.dspName = Name;
|
||||||
|
this.modID = modid;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue