mirror of
https://github.com/Minecraft-Community-Edition/client.git
synced 2026-05-23 17:44:34 +00:00
15 lines
284 B
C++
15 lines
284 B
C++
#pragma once
|
|
#include "Feature.h"
|
|
|
|
class SkyrootTreeFeature : public Feature
|
|
{
|
|
private:
|
|
const int baseHeight;
|
|
|
|
public:
|
|
SkyrootTreeFeature(bool doUpdate);
|
|
SkyrootTreeFeature(bool doUpdate, int baseHeight);
|
|
|
|
virtual bool place(Level *level, Random *random, int x, int y, int z);
|
|
};
|