b86fb56999
Improved Logging for render mismatch.
36 lines
516 B
Java
36 lines
516 B
Java
package appeng.helpers;
|
|
|
|
import net.minecraftforge.common.util.ForgeDirection;
|
|
import appeng.api.util.IOrientable;
|
|
|
|
public class NullRotation implements IOrientable
|
|
{
|
|
|
|
public NullRotation() {
|
|
|
|
}
|
|
|
|
@Override
|
|
public void setOrientation(ForgeDirection Forward, ForgeDirection Up)
|
|
{
|
|
|
|
}
|
|
|
|
@Override
|
|
public ForgeDirection getUp()
|
|
{
|
|
return ForgeDirection.UP;
|
|
}
|
|
|
|
@Override
|
|
public ForgeDirection getForward()
|
|
{
|
|
return ForgeDirection.SOUTH;
|
|
}
|
|
|
|
@Override
|
|
public boolean canBeRotated()
|
|
{
|
|
return false;
|
|
}
|
|
}
|