mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2025-02-13 16:24:23 +01:00
Yet more warnings
This commit is contained in:
parent
e1cfe8aa68
commit
e69876f0c7
3 changed files with 6 additions and 11 deletions
|
@ -1,10 +1,6 @@
|
|||
package com.minelittlepony.model.components;
|
||||
|
||||
import net.minecraft.client.renderer.GlStateManager;
|
||||
import net.minecraft.client.renderer.GlStateManager.DestFactor;
|
||||
import net.minecraft.client.renderer.GlStateManager.SourceFactor;
|
||||
|
||||
import org.lwjgl.opengl.GL11;
|
||||
|
||||
import com.minelittlepony.model.AbstractPonyModel;
|
||||
import com.minelittlepony.model.capabilities.IModelPegasus;
|
||||
|
|
|
@ -4,7 +4,6 @@ import com.minelittlepony.model.components.BatWings;
|
|||
import com.minelittlepony.model.components.PegasusWings;
|
||||
import com.minelittlepony.render.PonyRenderer;
|
||||
|
||||
import net.minecraft.client.renderer.GlStateManager;
|
||||
import net.minecraft.entity.Entity;
|
||||
|
||||
import com.minelittlepony.model.capabilities.IModelPegasus;
|
||||
|
|
|
@ -26,12 +26,12 @@ import javax.annotation.Nullable;
|
|||
*/
|
||||
public class PonySkullRenderer extends TileEntitySkullRenderer implements IRenderItem {
|
||||
|
||||
private static final int SKELETON = 0;
|
||||
private static final int WITHER = 1;
|
||||
private static final int ZOMBIE = 2;
|
||||
private static final int PLAYER = 3;
|
||||
private static final int CREEPER = 4;
|
||||
private static final int DRAGON = 5;
|
||||
public static final int SKELETON = 0;
|
||||
public static final int WITHER = 1;
|
||||
public static final int ZOMBIE = 2;
|
||||
public static final int PLAYER = 3;
|
||||
public static final int CREEPER = 4;
|
||||
public static final int DRAGON = 5;
|
||||
|
||||
public static PonySkullRenderer ponyInstance = new PonySkullRenderer();
|
||||
private static TileEntitySkullRenderer backup = null;
|
||||
|
|
Loading…
Reference in a new issue