4jcraft/targets/minecraft/client/renderer/entity/VillagerGolemRenderer.h
2026-04-01 13:27:58 -05:00

24 lines
745 B
C++

#pragma once
#include "MobRenderer.h"
class VillagerGolemModel;
class ResourceLocation;
class VillagerGolemRenderer : public MobRenderer {
private:
VillagerGolemModel* golemModel;
static ResourceLocation GOLEM_LOCATION;
public:
VillagerGolemRenderer();
virtual void render(std::shared_ptr<Entity> mob, double x, double y,
double z, float rot, float a);
virtual ResourceLocation* getTextureLocation(std::shared_ptr<Entity> mob);
protected:
virtual void setupRotations(std::shared_ptr<LivingEntity> _mob, float bob,
float bodyRot, float a);
virtual void additionalRendering(std::shared_ptr<LivingEntity> mob,
float a);
};