first commit

This commit is contained in:
murdle
2026-03-01 02:38:58 +02:00
commit 19250b9db4
19111 changed files with 4358159 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
#pragma once
class ChestTileEntity;
class EnderChestTileEntity;
class Tile;
class EntityTileRenderer
{
public:
static EntityTileRenderer *instance;
private:
shared_ptr<ChestTileEntity> chest;
shared_ptr<EnderChestTileEntity> enderChest;
public:
EntityTileRenderer();
void render(Tile *tile, int data, float brightness, float alpha, bool setColor = true, bool useCompiled = true); // 4J - added setColor parameter and alpha for chest in the crafting menu, and added useCompiled
};