Begin rituals + some refactoring

This commit is contained in:
Nick 2015-10-31 13:47:43 -07:00
parent 07b1f36594
commit 3a7e0a3a8c
25 changed files with 392 additions and 35 deletions

View file

@ -0,0 +1,13 @@
package WayofTime.alchemicalWizardry.api.ritual;
import net.minecraft.util.BlockPos;
import net.minecraft.world.World;
public interface IRitualStone {
boolean isRuneType(World world, BlockPos pos, int meta, EnumRuneType runeType);
interface Tile {
boolean isRuneType(EnumRuneType runeType);
}
}