blob: 8a6c9ed032899f9f8f019b4131c685e64bc4efed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
package rosegoldaddons.events;
import net.minecraft.client.model.ModelBase;
import net.minecraft.entity.EntityLivingBase;
import net.minecraftforge.fml.common.eventhandler.Cancelable;
import net.minecraftforge.fml.common.eventhandler.Event;
@Cancelable
public class RenderLivingEntityEvent extends Event {
public EntityLivingBase entity;
public float p_77036_2_, p_77036_3_, p_77036_4_, p_77036_5_, p_77036_6_, scaleFactor;
public ModelBase modelBase;
public RenderLivingEntityEvent(EntityLivingBase entity, float p_77036_2_, float p_77036_3_, float p_77036_4_, float p_77036_5_, float p_77036_6_, float scaleFactor, ModelBase modelBase) {
this.entity = entity;
this.p_77036_2_ = p_77036_2_;
this.p_77036_3_ = p_77036_3_;
this.p_77036_4_ = p_77036_4_;
this.p_77036_5_ = p_77036_5_;
this.p_77036_6_ = p_77036_6_;
this.scaleFactor = scaleFactor;
this.modelBase = modelBase;
}
}
|