Added ItemRailingTransfer Interface and object

This commit is contained in:
tgame14 2014-03-16 13:07:33 +02:00
parent ad01f78493
commit 35c0bb2369
2 changed files with 41 additions and 0 deletions

View file

@ -0,0 +1,12 @@
package resonantinduction.electrical.itemrailing;
/**
* An object that Transfers all
*
* @since 16/03/14
* @author tgame14
*/
public class ItemRailingTransfer
{
}

View file

@ -0,0 +1,29 @@
package resonantinduction.electrical.itemrailing.interfaces;
import calclavia.lib.render.EnumColor;
import net.minecraft.item.ItemStack;
import universalelectricity.api.vector.VectorWorld;
/**
* the object that handles/
*
* @since 16/03/14
* @author tgame14
*/
public interface IItemRailingTransfer
{
public VectorWorld getWorldPos();
public ItemStack getItemStack();
public EnumColor getColor();
public IItemRailingTransfer setColor();
// getEndTarget();
// setEndTarget();
// getSpeed();
}