blob: ef4c2d18d30a108fe820e2ed2915bc1d716a0e06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#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);
};
|