Package com.flansmod.client.model.mw

Source Code of com.flansmod.client.model.mw.ModelSilencer

package com.flansmod.client.model.mw;

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

public class ModelSilencer extends ModelAttachment
{
  public ModelSilencer()
  {
    int textureX = 16;
    int textureY = 4;
   
    attachmentModel = new ModelRendererTurbo[1];
   
    attachmentModel[0] = new ModelRendererTurbo(this, 0, 0, textureX, textureY);
    attachmentModel[0].addBox(0F, -1F, -1F, 6, 2, 2);
  }
}
TOP

Related Classes of com.flansmod.client.model.mw.ModelSilencer

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.