Updated Sanguine Armour textures, added Blood Letter's Pack texture, fixed API imports.

This commit is contained in:
WayofTime 2014-11-17 18:33:11 -05:00
parent bc50e92fa3
commit ad3289d080
16 changed files with 25 additions and 16 deletions

View file

@ -1,13 +1,13 @@
package WayofTime.alchemicalWizardry.api.renderer;
import WayofTime.alchemicalWizardry.common.tileEntity.TEMasterStone;
import net.minecraft.client.renderer.texture.TextureManager;
import net.minecraft.client.renderer.tileentity.TileEntityRendererDispatcher;
import net.minecraft.util.ResourceLocation;
import WayofTime.alchemicalWizardry.api.rituals.IMasterRitualStone;
public abstract class MRSRenderer
{
public abstract void renderAt(TEMasterStone tile, double x, double y, double z);
public abstract void renderAt(IMasterRitualStone tile, double x, double y, double z);
protected void bindTexture(ResourceLocation p_147499_1_)
{

View file

@ -33,4 +33,8 @@ public interface IMasterRitualStone extends ISegmentedReagentHandler
public NBTTagCompound getCustomRitualTag();
public void setCustomRitualTag(NBTTagCompound tag);
public boolean areTanksEmpty();
public int getRunningTime();
}

View file

@ -13,7 +13,6 @@ import java.util.UUID;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.server.MinecraftServer;
import WayofTime.alchemicalWizardry.AlchemicalWizardry;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
@ -77,7 +76,6 @@ public class ComplexNetworkHandler
Gson gson = new GsonBuilder().setPrettyPrinting().create();
String json = gson.toJson(keyMap);
AlchemicalWizardry.logger.info("Here, too!");
Writer writer;
try
{