mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-01 23:43:51 +00:00
13 lines
363 B
C++
13 lines
363 B
C++
#pragma once
|
|
#include "EntityRenderer.h"
|
|
|
|
class ArrowRenderer : public EntityRenderer {
|
|
private:
|
|
static ResourceLocation ARROW_LOCATION;
|
|
|
|
public:
|
|
virtual void render(std::shared_ptr<Entity> _arrow, double x, double y,
|
|
double z, float rot, float a);
|
|
virtual ResourceLocation* getTextureLocation(std::shared_ptr<Entity> mob);
|
|
};
|