Moved gear shaft to its own package

This commit is contained in:
Robert S 2014-04-10 19:17:18 -04:00
parent 9e45080d24
commit 58141f2214
6 changed files with 11 additions and 6 deletions

View file

@ -1,7 +1,7 @@
package resonantinduction.mechanical;
import resonantinduction.mechanical.energy.gear.RenderGear;
import resonantinduction.mechanical.energy.gear.RenderGearShaft;
import resonantinduction.mechanical.energy.gearshaft.RenderGearShaft;
import resonantinduction.mechanical.fluid.pipe.RenderPipe;
import calclavia.lib.render.item.GlobalItemRenderer;

View file

@ -32,7 +32,7 @@ import resonantinduction.core.TabRI;
import resonantinduction.mechanical.belt.BlockConveyorBelt;
import resonantinduction.mechanical.belt.TileConveyorBelt;
import resonantinduction.mechanical.energy.gear.ItemGear;
import resonantinduction.mechanical.energy.gear.ItemGearShaft;
import resonantinduction.mechanical.energy.gearshaft.ItemGearShaft;
import resonantinduction.mechanical.energy.grid.MechanicalNode;
import resonantinduction.mechanical.energy.turbine.*;
import resonantinduction.mechanical.fluid.pipe.EnumPipeMaterial;

View file

@ -12,6 +12,8 @@ import net.minecraft.item.ItemStack;
import net.minecraft.tileentity.TileEntity;
import net.minecraftforge.common.ForgeDirection;
import resonantinduction.mechanical.Mechanical;
import resonantinduction.mechanical.energy.gearshaft.GearShaftNode;
import resonantinduction.mechanical.energy.gearshaft.RenderGearShaft;
import resonantinduction.mechanical.energy.grid.MechanicalNode;
import resonantinduction.mechanical.energy.grid.PartMechanical;

View file

@ -1,14 +1,15 @@
package resonantinduction.mechanical.energy.gear;
package resonantinduction.mechanical.energy.gearshaft;
import net.minecraft.tileentity.TileEntity;
import net.minecraftforge.common.ForgeDirection;
import calclavia.api.resonantinduction.IMechanicalNode;
import calclavia.lib.grid.INodeProvider;
import resonantinduction.mechanical.energy.gear.PartGear;
import resonantinduction.mechanical.energy.gear.PartGearShaft;
import resonantinduction.mechanical.energy.grid.MechanicalNode;
public class GearShaftNode extends MechanicalNode
{
public GearShaftNode(PartGearShaft parent)
{
super(parent);

View file

@ -1,4 +1,4 @@
package resonantinduction.mechanical.energy.gear;
package resonantinduction.mechanical.energy.gearshaft;
import java.util.List;
@ -7,6 +7,7 @@ import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack;
import net.minecraft.world.World;
import resonantinduction.core.prefab.part.IHighlight;
import resonantinduction.mechanical.energy.gear.PartGearShaft;
import codechicken.lib.vec.BlockCoord;
import codechicken.lib.vec.Vector3;
import codechicken.multipart.JItemMultiPart;

View file

@ -1,4 +1,4 @@
package resonantinduction.mechanical.energy.gear;
package resonantinduction.mechanical.energy.gearshaft;
import static org.lwjgl.opengl.GL11.glRotatef;
import net.minecraft.item.ItemStack;
@ -9,6 +9,7 @@ import net.minecraftforge.common.ForgeDirection;
import org.lwjgl.opengl.GL11;
import resonantinduction.core.Reference;
import resonantinduction.mechanical.energy.gear.PartGearShaft;
import calclavia.lib.render.RenderUtility;
import calclavia.lib.render.item.ISimpleItemRenderer;
import cpw.mods.fml.relauncher.Side;