mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/LegacyNetherFork.git
synced 2026-06-14 05:42:00 +00:00
14 lines
349 B
C++
14 lines
349 B
C++
#pragma once
|
|
#include "MobRenderer.h"
|
|
|
|
class WatcherRenderer : public MobRenderer
|
|
{
|
|
private:
|
|
static ResourceLocation WATCHER_LOCATION;
|
|
|
|
public:
|
|
WatcherRenderer();
|
|
|
|
virtual void render(shared_ptr<Entity> _mob, double x, double y, double z, float rot, float a);
|
|
virtual ResourceLocation *getTextureLocation(shared_ptr<Entity> mob);
|
|
}; |