Skip to content

Commit

Permalink
re-organize some of the plugins to different packages
Browse files Browse the repository at this point in the history
  • Loading branch information
progwml6 committed Dec 19, 2013
1 parent 4822020 commit c828a04
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 6 deletions.
5 changes: 5 additions & 0 deletions src/main/java/tconstruct/plugins/PluginController.java
Expand Up @@ -5,7 +5,12 @@
import tconstruct.TConstruct;
import tconstruct.plugins.fmp.ForgeMultiPart;
import tconstruct.plugins.ic2.IC2;
import tconstruct.plugins.imc.AppEng;
import tconstruct.plugins.imc.BuildcraftTransport;
import tconstruct.plugins.imc.Mystcraft;
import tconstruct.plugins.imc.Thaumcraft;
import tconstruct.plugins.minefactoryreloaded.MineFactoryReloaded;
import tconstruct.plugins.nei.NotEnoughItems;
import tconstruct.plugins.waila.Waila;

import java.io.File;
Expand Down
@@ -1,7 +1,8 @@
package tconstruct.plugins;
package tconstruct.plugins.imc;

import cpw.mods.fml.common.event.FMLInterModComms;
import tconstruct.TConstruct;
import tconstruct.plugins.ICompatPlugin;

import java.util.Arrays;
import java.util.List;
Expand Down
@@ -1,8 +1,9 @@
package tconstruct.plugins;
package tconstruct.plugins.imc;

import cpw.mods.fml.common.event.FMLInterModComms;
import tconstruct.TConstruct;
import tconstruct.common.TRepo;
import tconstruct.plugins.ICompatPlugin;

public class BuildcraftTransport implements ICompatPlugin {

Expand Down
@@ -1,8 +1,9 @@
package tconstruct.plugins;
package tconstruct.plugins.imc;

import cpw.mods.fml.common.event.FMLInterModComms;
import net.minecraft.nbt.NBTTagCompound;
import tconstruct.TConstruct;
import tconstruct.plugins.ICompatPlugin;

public class Mystcraft implements ICompatPlugin {

Expand Down
@@ -1,9 +1,10 @@
package tconstruct.plugins;
package tconstruct.plugins.imc;

import cpw.mods.fml.common.event.FMLInterModComms;
import net.minecraft.item.ItemStack;
import tconstruct.TConstruct;
import tconstruct.common.TRepo;
import tconstruct.plugins.ICompatPlugin;

public class Thaumcraft implements ICompatPlugin {

Expand Down
@@ -1,4 +1,4 @@
package tconstruct.plugins;
package tconstruct.plugins.nei;

import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.common.FMLCommonHandler;
Expand Down
@@ -1,6 +1,7 @@
package tconstruct.plugins;
package tconstruct.plugins.nei;

import tconstruct.TConstruct;
import tconstruct.plugins.ICompatPlugin;

public class NotEnoughItems implements ICompatPlugin
{
Expand Down

0 comments on commit c828a04

Please sign in to comment.