reimplement aether stuff from personal repo

This commit is contained in:
Bonnie
2026-03-03 11:12:53 -06:00
parent 4d04f408d7
commit afb8090812
129 changed files with 4352 additions and 591 deletions

View File

@@ -0,0 +1,14 @@
#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);
};