mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/LegacyNetherFork.git
synced 2026-06-27 22:35:36 +00:00
18 lines
377 B
C++
18 lines
377 B
C++
#pragma once
|
|
#include "Tile.h"
|
|
|
|
class ChunkRebuildData;
|
|
class NetherWoodTile : public Tile
|
|
{
|
|
friend class ChunkRebuildData;
|
|
private:
|
|
Icon *iconTop;
|
|
|
|
// 4J Stu - I don't know why this is protected in Java
|
|
//protected:
|
|
public:
|
|
NetherWoodTile(int id);
|
|
public:
|
|
virtual Icon *getTexture(int face, int data);
|
|
void registerIcons(IconRegister *iconRegister);
|
|
}; |