Skip to content

Commit

Permalink
Main Methods Public now
Browse files Browse the repository at this point in the history
  • Loading branch information
AzureZhen committed Jan 10, 2022
1 parent cd9106d commit b90897b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public abstract class GeoEntityRenderer<T extends LivingEntity & IAnimatable> ex
public VertexConsumerProvider rtb;
public Identifier whTexture;

protected GeoEntityRenderer(EntityRendererFactory.Context ctx, AnimatedGeoModel<T> modelProvider) {
public GeoEntityRenderer(EntityRendererFactory.Context ctx, AnimatedGeoModel<T> modelProvider) {
super(ctx);
this.modelProvider = modelProvider;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class GeoProjectilesRenderer<T extends Entity & IAnimatable> extends Enti

private final AnimatedGeoModel<T> modelProvider;

protected GeoProjectilesRenderer(EntityRendererFactory.Context ctx, AnimatedGeoModel<T> modelProvider) {
public GeoProjectilesRenderer(EntityRendererFactory.Context ctx, AnimatedGeoModel<T> modelProvider) {
super(ctx);
this.modelProvider = modelProvider;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public abstract class GeoReplacedEntityRenderer<T extends IAnimatable> extends E
});
}

protected GeoReplacedEntityRenderer(EntityRendererFactory.Context ctx,
public GeoReplacedEntityRenderer(EntityRendererFactory.Context ctx,
AnimatedGeoModel<IAnimatable> modelProvider, T animatable) {
super(ctx);
this.modelProvider = modelProvider;
Expand Down

0 comments on commit b90897b

Please sign in to comment.