Make the project buildable with gradlew build by externalizing the model generator and expose it as an interface

This commit is contained in:
thatsIch
2016-02-16 21:06:59 +01:00
parent 8383715892
commit aff3941729
89 changed files with 307 additions and 143 deletions
@@ -33,14 +33,15 @@ import net.minecraft.util.ResourceLocation;
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;
import appeng.client.render.ModelGenerator;
import appeng.api.util.ModelGenerator;
import appeng.client.render.BakingModelGenerator;
@SideOnly( Side.CLIENT )
public class RenderTinyTNTPrimed extends Render
{
private final ModelGenerator blockRenderer = new ModelGenerator();
private final ModelGenerator blockRenderer = new BakingModelGenerator();
public RenderTinyTNTPrimed( final RenderManager p_i46134_1_ )
{