Files
deadvoxelx-HellishEnds/Minecraft.Client/PigmanRenderer.h
DeadVoxelx fc40833d5a Add Pigmen
2026-03-30 00:55:51 -04:00

16 lines
379 B
C++

#pragma once
#include "HumanoidMobRenderer.h"
class Pigman;
class PigmanRenderer : public HumanoidMobRenderer
{
private:
static ResourceLocation PIGMAN_LOCATION;
public:
PigmanRenderer();
virtual void render(shared_ptr<Entity> _mob, double x, double y, double z, float rot, float a);
virtual ResourceLocation *getTextureLocation(shared_ptr<Entity> mob);
};