Package changes
This commit is contained in:
parent
814a1333dd
commit
68d725912b
19 changed files with 23 additions and 20 deletions
|
@ -20,7 +20,7 @@ import dark.core.common.CoreRecipeLoader;
|
|||
import dark.core.common.items.EnumMaterial;
|
||||
import dark.core.common.items.EnumOrePart;
|
||||
import dark.core.common.items.ItemOreDirv;
|
||||
import dark.core.prefab.helpers.AutoCraftingManager;
|
||||
import dark.core.helpers.AutoCraftingManager;
|
||||
|
||||
/** Recipes for ore processor machines
|
||||
*
|
||||
|
|
|
@ -54,10 +54,10 @@ import dark.core.common.machines.BlockDebug;
|
|||
import dark.core.common.machines.BlockSolarPanel;
|
||||
import dark.core.common.transmit.BlockWire;
|
||||
import dark.core.common.transmit.ItemBlockWire;
|
||||
import dark.core.helpers.PacketDataWatcher;
|
||||
import dark.core.network.PacketHandler;
|
||||
import dark.core.prefab.ItemBlockHolder;
|
||||
import dark.core.prefab.ModPrefab;
|
||||
import dark.core.prefab.helpers.PacketDataWatcher;
|
||||
import dark.core.prefab.machine.BlockMulti;
|
||||
import dark.core.registration.ModObjectRegistry;
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@ import com.builtbroken.common.Pair;
|
|||
import com.builtbroken.common.Triple;
|
||||
|
||||
import cpw.mods.fml.common.registry.GameRegistry;
|
||||
import dark.core.prefab.helpers.AutoCraftingManager;
|
||||
import dark.core.helpers.AutoCraftingManager;
|
||||
|
||||
/** Recipe system to make it easier to load recipes for a mod
|
||||
*
|
||||
|
|
|
@ -26,7 +26,7 @@ import dark.api.IToolReadOut.EnumTools;
|
|||
import dark.core.common.DarkMain;
|
||||
import dark.core.prefab.ItemBasic;
|
||||
import dark.core.prefab.ModPrefab;
|
||||
import dark.core.prefab.helpers.FluidHelper;
|
||||
import dark.core.prefab.fluids.FluidHelper;
|
||||
|
||||
public class ItemReadoutTools extends ItemBasic
|
||||
{
|
||||
|
|
|
@ -17,7 +17,7 @@ import universalelectricity.core.vector.Vector3;
|
|||
|
||||
import com.builtbroken.common.lang.TextHelper.TextColor;
|
||||
|
||||
import dark.core.prefab.helpers.FluidHelper;
|
||||
import dark.core.prefab.fluids.FluidHelper;
|
||||
|
||||
public class TileEntityInfFluid extends TileEntity implements IFluidHandler, IDebugTile
|
||||
{
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package dark.core.prefab.helpers;
|
||||
package dark.core.helpers;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
|
@ -1,4 +1,4 @@
|
|||
package dark.core.prefab.helpers;
|
||||
package dark.core.helpers;
|
||||
|
||||
import net.minecraft.tileentity.TileEntity;
|
||||
import net.minecraft.world.World;
|
|
@ -1,4 +1,4 @@
|
|||
package dark.core.prefab.helpers;
|
||||
package dark.core.helpers;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
|
@ -1,4 +1,4 @@
|
|||
package dark.core.prefab.helpers;
|
||||
package dark.core.helpers;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
|
@ -1,4 +1,4 @@
|
|||
package dark.core.prefab.helpers;
|
||||
package dark.core.helpers;
|
||||
|
||||
import java.util.Random;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package dark.core.prefab.helpers;
|
||||
package dark.core.helpers;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.HashMap;
|
|
@ -1,4 +1,4 @@
|
|||
package dark.core.prefab.helpers;
|
||||
package dark.core.helpers;
|
||||
|
||||
import java.util.Iterator;
|
||||
import java.util.List;
|
|
@ -1,4 +1,4 @@
|
|||
package dark.core.prefab.helpers;
|
||||
package dark.core.helpers;
|
||||
|
||||
import java.util.List;
|
||||
|
|
@ -10,7 +10,7 @@ import universalelectricity.prefab.network.IPacketReceiver;
|
|||
import com.google.common.io.ByteArrayDataInput;
|
||||
|
||||
import cpw.mods.fml.common.network.Player;
|
||||
import dark.core.prefab.helpers.PacketDataWatcher;
|
||||
import dark.core.helpers.PacketDataWatcher;
|
||||
|
||||
public class PacketManagerTile implements IPacketManager
|
||||
{
|
||||
|
|
|
@ -22,7 +22,7 @@ import cpw.mods.fml.common.event.FMLPreInitializationEvent;
|
|||
import cpw.mods.fml.common.registry.TickRegistry;
|
||||
import cpw.mods.fml.relauncher.Side;
|
||||
import dark.core.common.ExternalModHandler;
|
||||
import dark.core.prefab.helpers.FluidHelper;
|
||||
import dark.core.prefab.fluids.FluidHelper;
|
||||
import dark.core.prefab.tilenetwork.NetworkUpdateHandler;
|
||||
import dark.core.registration.ModObjectRegistry;
|
||||
import dark.core.save.SaveManager;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package dark.core.prefab.gas;
|
||||
package dark.core.prefab.fluids;
|
||||
|
||||
import com.builtbroken.common.science.ChemElement;
|
||||
import com.builtbroken.common.science.ChemicalCompound;
|
|
@ -1,4 +1,4 @@
|
|||
package dark.core.prefab.helpers;
|
||||
package dark.core.prefab.fluids;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.HashMap;
|
||||
|
@ -27,6 +27,7 @@ import com.google.common.collect.BiMap;
|
|||
import com.google.common.collect.HashBiMap;
|
||||
|
||||
import dark.api.ColorCode;
|
||||
import dark.core.helpers.AutoCraftingManager;
|
||||
|
||||
public class FluidHelper
|
||||
{
|
|
@ -1,4 +1,4 @@
|
|||
package dark.core.prefab.gas;
|
||||
package dark.core.prefab.fluids;
|
||||
|
||||
import net.minecraftforge.fluids.Fluid;
|
||||
|
|
@ -1,10 +1,12 @@
|
|||
package dark.core.prefab.gas;
|
||||
package dark.core.prefab.fluids;
|
||||
|
||||
import net.minecraftforge.fluids.Fluid;
|
||||
import net.minecraftforge.fluids.FluidStack;
|
||||
import net.minecraftforge.fluids.FluidTank;
|
||||
|
||||
/** Version of the fluid tank that is restricted to gases only */
|
||||
/** Version of the fluid tank that is restricted to gases only
|
||||
*
|
||||
* @author DarkGuardsman */
|
||||
public class GasTank extends FluidTank
|
||||
{
|
||||
|
Loading…
Reference in a new issue