Cleanup Altar Upgrade system

This commit is contained in:
Nicholas Ignoffo 2018-02-16 16:37:02 -08:00
parent 2fecb427fd
commit e4e6a8c4ca
7 changed files with 64 additions and 179 deletions

View file

@ -0,0 +1,15 @@
package WayofTime.bloodmagic.iface;
import WayofTime.bloodmagic.block.enums.BloodRuneType;
import net.minecraft.block.state.IBlockState;
import net.minecraft.util.math.BlockPos;
import net.minecraft.world.IBlockAccess;
import javax.annotation.Nullable;
public interface IBloodRune {
@Nullable
BloodRuneType getBloodRune(IBlockAccess world, BlockPos pos, IBlockState state);
}