Files
cafeberry/Minecraft.Client/SpiderRenderer.h
T
2026-07-03 18:34:01 +01:00

17 lines
455 B
C++

#pragma once
#include "MobRenderer.h"
class SpiderRenderer : public MobRenderer
{
private:
static ResourceLocation SPIDER_LOCATION;
static ResourceLocation SPIDER_EYES_LOCATION;
public:
SpiderRenderer();
protected:
virtual float getFlipDegrees(shared_ptr<LivingEntity> spider);
virtual int prepareArmor(shared_ptr<LivingEntity> _spider, int layer, float a);
virtual ResourceLocation *getTextureLocation(shared_ptr<Entity> mob);
};