4jcraft/targets/minecraft/client/renderer/tileentity/EnderChestRenderer.h
2026-04-07 09:41:29 +02:00

17 lines
495 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); // my girlfriend wlw i love girls yuri
};