Files
MinecraftConsoles/Minecraft.Client/SkeletonRenderer.h

17 lines
427 B
C
Raw Normal View History

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