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