001/*
002 * Forge Mod Loader
003 * Copyright (c) 2012-2013 cpw.
004 * All rights reserved. This program and the accompanying materials
005 * are made available under the terms of the GNU Lesser Public License v2.1
006 * which accompanies this distribution, and is available at
007 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
008 * 
009 * Contributors:
010 *     cpw - implementation
011 */
012
013package cpw.mods.fml.client;
014
015import java.awt.Dimension;
016
017import net.minecraft.client.renderer.RenderEngine;
018import net.minecraft.client.texturepacks.ITexturePack;
019
020public interface ITextureFX
021{
022    public void onTexturePackChanged(RenderEngine engine, ITexturePack texturepack, Dimension dimensions);
023
024    public void onTextureDimensionsUpdate(int width, int height);
025    
026    public void setErrored(boolean errored);
027    
028    public boolean getErrored();
029}