4jcraft/Minecraft.Client/Rendering/EntityRenderers/ArrowRenderer.h
2026-03-21 22:28:58 -05:00

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);
};