mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-06 04:23:39 +00:00
8 lines
235 B
C++
8 lines
235 B
C++
#pragma once
|
|
#include "EntityRenderer.h"
|
|
|
|
class LightningBoltRenderer : public EntityRenderer {
|
|
public:
|
|
virtual void render(std::shared_ptr<Entity> bolt, double x, double y,
|
|
double z, float rot, float a);
|
|
}; |