Ported to 1.7

This commit is contained in:
AlgorithmX2
2014-02-08 19:34:52 -06:00
parent 30c1deb8cf
commit d50c7f6312
328 changed files with 2209 additions and 2311 deletions
+4 -4
View File
@@ -1,17 +1,17 @@
package appeng.client.texture;
import net.minecraft.util.Icon;
import net.minecraft.util.IIcon;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
public class TaughtIcon implements Icon
public class TaughtIcon implements IIcon
{
final float tightness;
private Icon p;
private IIcon p;
public TaughtIcon(Icon o, float tightness) {
public TaughtIcon(IIcon o, float tightness) {
p = o;
this.tightness = tightness;
}