This repository has been archived on 2026-05-14. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
MinecraftConsoles/Minecraft.Client/EnderChestRenderer.h
2026-03-01 11:00:23 -06:00

14 lines
388 B
C++

#pragma once
#include "TileEntityRenderer.h"
#include "ChestModel.h"
class EnderChestRenderer : public TileEntityRenderer
{
private:
static ResourceLocation ENDER_CHEST_LOCATION;
ChestModel chestModel;
public:
void render(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
};