Begin rituals + some refactoring
This commit is contained in:
parent
07b1f36594
commit
3a7e0a3a8c
25 changed files with 392 additions and 35 deletions
|
@ -0,0 +1,13 @@
|
|||
package WayofTime.alchemicalWizardry.api.ritual;
|
||||
|
||||
import net.minecraft.client.Minecraft;
|
||||
import net.minecraft.util.ResourceLocation;
|
||||
|
||||
public abstract class RitualRenderer {
|
||||
|
||||
public abstract void renderAt(IMasterRitualStone masterRitualStone, double x, double y, double z);
|
||||
|
||||
protected void bindTexture(ResourceLocation resourceLocation) {
|
||||
Minecraft.getMinecraft().getTextureManager().bindTexture(resourceLocation);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue