Applied-Energistics-2-tiler.../src/api/java/micdoodle8/mods/galacticraft/api/block/IPartialSealedBlock.java
thatsIch 54802be11f Moved API
Added temporary(!) API dependencies, will resolved via Maven later on
Added mcmod.info
Added pack.mcmeta template
Added hacked BC jar to use facades indev
Split build logic into several pieces
Update gitignore
Modify build.gradle to match changes
2014-09-26 16:14:45 +02:00

9 lines
188 B
Java

package micdoodle8.mods.galacticraft.api.block;
import net.minecraft.world.World;
public interface IPartialSealedBlock
{
public boolean isSealed(World world, int x, int y, int z);
}