Files
MinecraftCommunityEdition-c…/Minecraft.World/SkyrootTreeFeature.h
2026-03-03 11:12:53 -06:00

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);
};