mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-03-24 02:38:12 +05: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);
|
|
};
|