mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-07 04:47:14 +00:00
17 lines
409 B
C++
17 lines
409 B
C++
#pragma once
|
|
#include "EntityRenderer.h"
|
|
|
|
class BoatRenderer : public EntityRenderer {
|
|
private:
|
|
static ResourceLocation BOAT_LOCATION;
|
|
|
|
protected:
|
|
Model* model;
|
|
|
|
public:
|
|
BoatRenderer();
|
|
|
|
virtual void render(std::shared_ptr<Entity> boat, double x, double y,
|
|
double z, float rot, float a);
|
|
virtual ResourceLocation* getTextureLocation(std::shared_ptr<Entity> mob);
|
|
}; |