Package com.flansmod.client.model.zombie

Source Code of com.flansmod.client.model.zombie.ModelRiotShield

package com.flansmod.client.model.zombie;

import com.flansmod.client.model.ModelGun;
import com.flansmod.client.tmt.ModelRendererTurbo;

public class ModelRiotShield extends ModelGun
{
  public ModelRiotShield()
  {
    int textureX = 64;
    int textureY = 64;
   
    gunModel = new ModelRendererTurbo[1];
   
    gunModel[0] = new ModelRendererTurbo(this, 0, 0, textureX, textureY);
    gunModel[0].addBox(4F, -20F, -8F, 1, 32, 16);
   
  }
}
TOP

Related Classes of com.flansmod.client.model.zombie.ModelRiotShield

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.