mirror of
https://github.com/GabsPuNs/Project-Zenith-Main.git
synced 2026-05-21 18:24:34 +00:00
12 lines
395 B
C++
12 lines
395 B
C++
#pragma once
|
|
#include "EntityRenderer.h"
|
|
|
|
class FishingHookRenderer : public EntityRenderer
|
|
{
|
|
private:
|
|
static ResourceLocation PARTICLE_LOCATION;
|
|
public:
|
|
// FishingHookRenderer(EntityRenderDispatcher* dispatcher); // TU25
|
|
virtual void render(shared_ptr<Entity> _hook, double x, double y, double z, float rot, float a);
|
|
virtual ResourceLocation *getTextureLocation(shared_ptr<Entity> mob);
|
|
}; |