Files
deadvoxelx-HellishEnds/Minecraft.Client/SkeletonRenderer.h
DeadVoxelx 0aa720baf8 Add Stray
2026-04-12 16:15:00 -04:00

19 lines
472 B
C++

#pragma once
#include "HumanoidMobRenderer.h"
class SkeletonRenderer : public HumanoidMobRenderer
{
private:
static ResourceLocation SKELETON_LOCATION;
static ResourceLocation WITHER_SKELETON_LOCATION;
static ResourceLocation STRAY_LOCATION;
public:
SkeletonRenderer();
protected:
virtual void scale(shared_ptr<LivingEntity> mob, float a);
void translateWeaponItem();
virtual ResourceLocation *getTextureLocation(shared_ptr<Entity> entity);
};