2015-11-02 20:39:44 +00:00
|
|
|
package WayofTime.bloodmagic.api.altar;
|
2015-10-31 20:47:43 +00:00
|
|
|
|
2016-06-20 05:24:47 +00:00
|
|
|
import net.minecraft.block.state.IBlockState;
|
|
|
|
import net.minecraft.util.math.BlockPos;
|
|
|
|
import net.minecraft.world.World;
|
|
|
|
|
2016-06-20 05:36:35 +00:00
|
|
|
import javax.annotation.Nullable;
|
|
|
|
|
2015-12-30 20:34:40 +00:00
|
|
|
public interface IAltarComponent
|
|
|
|
{
|
2016-06-20 05:36:35 +00:00
|
|
|
@Nullable
|
2016-06-20 05:24:47 +00:00
|
|
|
EnumAltarComponent getType(World world, IBlockState state, BlockPos pos);
|
2015-10-31 20:47:43 +00:00
|
|
|
}
|