This repository has been archived on 2026-05-14. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
MinecraftConsoles/Minecraft.Client/ChickenRenderer.h
2026-03-01 11:00:23 -06:00

16 lines
440 B
C++

#pragma once
#include "MobRenderer.h"
class ChickenRenderer : public MobRenderer
{
private:
static ResourceLocation CHICKEN_LOCATION;
public:
ChickenRenderer(Model *model, float shadow);
virtual void render(shared_ptr<Entity> _mob, double x, double y, double z, float rot, float a);
virtual ResourceLocation *getTextureLocation(shared_ptr<Entity> mob);
protected:
virtual float getBob(shared_ptr<LivingEntity> _mob, float a);
};