Applied-Energistics-2-tiler.../src/main/java/appeng/integration/IntegrationType.java

82 lines
2.7 KiB
Java
Raw Normal View History

2014-11-14 12:02:52 +01:00
/*
* This file is part of Applied Energistics 2.
* Copyright (c) 2013 - 2015, AlgorithmX2, All rights reserved.
2014-11-14 12:02:52 +01:00
*
* Applied Energistics 2 is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Applied Energistics 2 is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Applied Energistics 2. If not, see <http://www.gnu.org/licenses/lgpl>.
*/
2014-09-24 02:26:27 +02:00
package appeng.integration;
2014-09-24 02:26:27 +02:00
public enum IntegrationType
{
IC2( IntegrationSide.BOTH, "Industrial Craft 2", "IC2" ),
2014-09-24 02:26:27 +02:00
RotaryCraft( IntegrationSide.BOTH, "Rotary Craft", "RotaryCraft" ),
2014-09-24 02:26:27 +02:00
RC( IntegrationSide.BOTH, "Railcraft", "Railcraft" ),
2014-09-24 02:26:27 +02:00
BuildCraftCore( IntegrationSide.BOTH, "BuildCraft Core", "BuildCraft|Core" ),
2015-08-06 18:49:57 +02:00
BuildCraftTransport( IntegrationSide.BOTH, "BuildCraft Transport", "BuildCraft|Transport" ),
2015-08-06 18:49:57 +02:00
BuildCraftBuilder( IntegrationSide.BOTH, "BuildCraft Builders", "BuildCraft|Builders" ),
2014-09-24 02:26:27 +02:00
RF( IntegrationSide.BOTH, "RedstoneFlux Power - Tiles", "CoFHAPI" ),
2014-09-24 02:26:27 +02:00
RFItem( IntegrationSide.BOTH, "RedstoneFlux Power - Items", "CoFHAPI" ),
2014-09-24 02:26:27 +02:00
MFR( IntegrationSide.BOTH, "Mine Factory Reloaded", "MineFactoryReloaded" ),
2014-09-24 02:26:27 +02:00
DSU( IntegrationSide.BOTH, "Deep Storage Unit", null ),
2014-09-24 02:26:27 +02:00
FZ( IntegrationSide.BOTH, "Factorization", "factorization" ),
2014-09-24 02:26:27 +02:00
FMP( IntegrationSide.BOTH, "Forge MultiPart", "McMultipart" ),
2014-09-24 02:26:27 +02:00
RB( IntegrationSide.BOTH, "Rotatable Blocks", "RotatableBlocks" ),
2014-09-24 02:26:27 +02:00
CLApi( IntegrationSide.BOTH, "Colored Lights Core", "coloredlightscore" ),
2014-09-24 02:26:27 +02:00
Waila( IntegrationSide.BOTH, "Waila", "Waila" ),
2014-09-24 02:26:27 +02:00
InvTweaks( IntegrationSide.CLIENT, "Inventory Tweaks", "inventorytweaks" ),
2014-09-24 02:26:27 +02:00
NEI( IntegrationSide.CLIENT, "Not Enough Items", "NotEnoughItems" ),
2014-09-24 02:26:27 +02:00
CraftGuide( IntegrationSide.CLIENT, "Craft Guide", "craftguide" ),
2014-09-24 02:26:27 +02:00
Mekanism( IntegrationSide.BOTH, "Mekanism", "Mekanism" ),
2014-09-24 02:26:27 +02:00
ImmibisMicroblocks( IntegrationSide.BOTH, "ImmibisMicroblocks", "ImmibisMicroblocks" ),
2015-02-03 12:04:13 +01:00
BetterStorage( IntegrationSide.BOTH, "BetterStorage", "betterstorage" ),
OpenComputers( IntegrationSide.BOTH, "OpenComputers", "OpenComputers" ),
PneumaticCraft( IntegrationSide.BOTH, "PneumaticCraft", "PneumaticCraft" );
2014-09-24 02:26:27 +02:00
public final IntegrationSide side;
public final String dspName;
public final String modID;
IntegrationType( IntegrationSide side, String name, String modid )
{
2014-09-24 02:26:27 +02:00
this.side = side;
this.dspName = name;
2014-09-24 02:26:27 +02:00
this.modID = modid;
}
}