Added ItemRailingTransfer Interface and object
This commit is contained in:
parent
ad01f78493
commit
35c0bb2369
2 changed files with 41 additions and 0 deletions
|
@ -0,0 +1,12 @@
|
|||
package resonantinduction.electrical.itemrailing;
|
||||
|
||||
/**
|
||||
* An object that Transfers all
|
||||
*
|
||||
* @since 16/03/14
|
||||
* @author tgame14
|
||||
*/
|
||||
public class ItemRailingTransfer
|
||||
{
|
||||
|
||||
}
|
|
@ -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();
|
||||
}
|
Loading…
Reference in a new issue