blob: 8c58ea9b7b97d66a64aeb6a2586d1f3c8052c419 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#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);
};
|