RyanHub – file viewer
filename: common/src/main/java/rearth/oritech/client/renderers/SolarPanelRenderer.java
branch: 1.21
back to repo
package rearth.oritech.client.renderers;

import rearth.oritech.block.entity.generators.BigSolarPanelEntity;
import software.bernie.geckolib.animatable.GeoAnimatable;
import software.bernie.geckolib.renderer.GeoBlockRenderer;

public class SolarPanelRenderer<T extends BigSolarPanelEntity & GeoAnimatable> extends GeoBlockRenderer<T> {
    public SolarPanelRenderer(String modelPath) {
        super(new SolarPanelModel<>(modelPath));
    }
}