mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-03-27 00:58:14 +05:00
12 lines
328 B
C++
12 lines
328 B
C++
#pragma once
|
|
#include "EntityRenderer.h"
|
|
|
|
class FishingHookRenderer : public EntityRenderer
|
|
{
|
|
private:
|
|
static ResourceLocation PARTICLE_LOCATION;
|
|
|
|
public:
|
|
virtual void render(shared_ptr<Entity> _hook, double x, double y, double z, float rot, float a);
|
|
virtual ResourceLocation *getTextureLocation(shared_ptr<Entity> mob);
|
|
}; |