Attempt to fix repository

This commit is contained in:
WayofTime 2015-07-31 12:09:09 -04:00
parent e242207d50
commit 1aac4686db
932 changed files with 39272 additions and 11544 deletions

View file

@ -1,7 +1,5 @@
package WayofTime.alchemicalWizardry.api.rituals;
import net.minecraft.block.state.IBlockState;
import net.minecraft.util.BlockPos;
import net.minecraft.world.World;
public interface IRitualStone
@ -9,10 +7,12 @@ public interface IRitualStone
/**
* x, y, and z give the position of the Ritual Stone
* @param world
* @param pos
* @param state
* @param x
* @param y
* @param z
* @param meta
* @param runeType
* @return
*/
boolean isRuneType(World world, BlockPos pos, IBlockState state, int runeType);
boolean isRuneType(World world, int x, int y, int z, int meta, int runeType);
}