18 lines
468 B
Java
18 lines
468 B
Java
|
package appeng.bootstrap;
|
||
|
|
||
|
|
||
|
import net.minecraftforge.fml.relauncher.Side;
|
||
|
import net.minecraftforge.fml.relauncher.SideOnly;
|
||
|
|
||
|
|
||
|
/**
|
||
|
* A callback that allows the rendering of a item to be customized. Sadly this class is required and no lambdas can be used
|
||
|
* due to them not being able to be annotated with @SideOnly(CLIENT).
|
||
|
*/
|
||
|
public abstract class ItemRenderingCustomizer
|
||
|
{
|
||
|
|
||
|
@SideOnly( Side.CLIENT )
|
||
|
public abstract void customize( IItemRendering rendering );
|
||
|
}
|