blob: fda498d1f6afa5934857ae3d0b2f92c388b08ec5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
package gtPlusPlus.xmod.gregtech.api.objects;
import gregtech.api.enums.Dyes;
import gregtech.api.interfaces.IIconContainer;
import gregtech.api.objects.GTRenderedTexture;
/**
* Made this to get rid of deprecation warnings <i>everywhere</i>.
*
* @author Alkalus
*
*/
@SuppressWarnings("deprecation")
public class GTPPRenderedTexture extends GTRenderedTexture {
public GTPPRenderedTexture(IIconContainer aIcon, short[] aRGBa, boolean aAllowAlpha) {
super(aIcon, aRGBa, aAllowAlpha);
}
public GTPPRenderedTexture(IIconContainer aIcon, short[] aRGBa) {
this(aIcon, aRGBa, true);
}
public GTPPRenderedTexture(IIconContainer aIcon) {
this(aIcon, Dyes._NULL.mRGBa);
}
}
|