mirror of
https://git.neolegacy.dev/pieeebot/cafeberry.git
synced 2026-09-23 12:12:27 +00:00
18 lines
303 B
C++
18 lines
303 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);
|
|
}; |