mirror of
https://github.com/Minecraft-Community-Edition/client.git
synced 2026-05-23 17:44:34 +00:00
17 lines
333 B
C++
17 lines
333 B
C++
#pragma once
|
|
#include "TransparentTile.h"
|
|
|
|
class Random;
|
|
|
|
class AetherLeafTile : public TransparentTile
|
|
{
|
|
friend class Tile;
|
|
protected:
|
|
AetherLeafTile(int id);
|
|
|
|
public:
|
|
virtual int getResource(int data, Random *random, int playerBonusLevel);
|
|
virtual int getResourceCount(Random *random);
|
|
virtual bool isSeasonalLeaf() const;
|
|
};
|