mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-05-08 14:59:21 +00:00
18 lines
260 B
C++
18 lines
260 B
C++
#pragma once
|
|
|
|
#include "CropTile.h"
|
|
|
|
class CarrotTile : public CropTile
|
|
{
|
|
friend class ChunkRebuildData;
|
|
private:
|
|
Icon *icons[4];
|
|
public:
|
|
CarrotTile(int id);
|
|
|
|
Icon *getTexture(int face, int data);
|
|
|
|
protected:
|
|
int getBaseSeedId();
|
|
int getBasePlantId();
|
|
}; |