mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/LegacyNetherFork.git
synced 2026-06-23 08:15:33 +00:00
16 lines
379 B
C++
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);
|
|
}; |