Files
MinecraftConsoles/Minecraft.Client/ArrowRenderer.h
T
2026-07-09 04:15:40 -04:00

13 lines
320 B
C++

#pragma once
#include "EntityRenderer.h"
class ArrowRenderer : public EntityRenderer
{
private:
static ResourceLocation ARROW_LOCATION;
public:
virtual void render(shared_ptr<Entity> _arrow, double x, double y, double z, float rot, float a);
virtual ResourceLocation *getTextureLocation(shared_ptr<Entity> mob);
};