Files
MinecraftConsoles/Minecraft.World/HayBlockTile.h

18 lines
286 B
C
Raw Normal View History

2026-03-01 11:00:23 -06:00
#pragma once
#include "RotatedPillarTile.h"
class HayBlockTile : public RotatedPillarTile
{
friend class ChunkRebuildData;
public:
HayBlockTile(int id);
int getRenderShape();
protected:
Icon *getTypeTexture(int type);
public:
void registerIcons(IconRegister *iconRegister);
};