mirror of
https://gitea.murdle.top/murdle/mc-lce.git
synced 2026-03-11 11:29:01 +02:00
9 lines
198 B
C++
9 lines
198 B
C++
#pragma once
|
|
#include "EntityRenderer.h"
|
|
|
|
class ArrowRenderer : public EntityRenderer
|
|
{
|
|
public:
|
|
virtual void render(shared_ptr<Entity> _arrow, double x, double y, double z, float rot, float a);
|
|
};
|