mirror of
https://github.com/Minecraft-Community-Edition/client.git
synced 2026-05-23 09:34:42 +00:00
18 lines
342 B
C++
18 lines
342 B
C++
#pragma once
|
|
#include "AetherBushTile.h"
|
|
|
|
class AetherSaplingTile : public AetherBushTile
|
|
{
|
|
friend class Tile;
|
|
public:
|
|
static const int AGE_BIT = 8;
|
|
|
|
protected:
|
|
AetherSaplingTile(int id);
|
|
|
|
public:
|
|
virtual void tick(Level *level, int x, int y, int z, Random *random);
|
|
|
|
void growTree(Level *level, int x, int y, int z, Random *random);
|
|
};
|