Fixed server sided issue with Attractor Array

Added Movement Array, and helped generalize the Arrays a bit more
This commit is contained in:
WayofTime 2016-06-29 07:43:04 -04:00
parent 22c1f0db55
commit 1836fc742d
11 changed files with 130 additions and 13 deletions

View file

@ -0,0 +1,8 @@
package WayofTime.bloodmagic.api.iface;
import net.minecraft.util.EnumFacing;
public interface IAlchemyArray
{
public abstract EnumFacing getRotation();
}