4jcraft/targets/minecraft/client/renderer/tileentity/EnderChestRenderer.h
2026-04-01 13:27:58 -05:00

17 lines
483 B
C++

#pragma once
#include "TileEntityRenderer.h"
#include "minecraft/client/model/ChestModel.h"
class ResourceLocation;
class EnderChestRenderer : public TileEntityRenderer {
private:
static ResourceLocation ENDER_CHEST_LOCATION;
ChestModel chestModel;
public:
void render(std::shared_ptr<TileEntity> _chest, double x, double y,
double z, float a, bool setColor, float alpha = 1.0f,
bool useCompiled = true); // 4J added setColor param
};