4jcraft/targets/minecraft/world/level/tile/HayBlockTile.h
2026-04-01 13:27:58 -05:00

18 lines
302 B
C++

#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);
};