oops forgot to include the other files.

This commit is contained in:
Shredder
2026-04-01 23:37:37 +05:00
parent 27f0287986
commit 84e8744387
8 changed files with 51 additions and 194 deletions

View File

@@ -6,6 +6,7 @@
#include "Biome.h"
#include "../levelgen/feature/TreeFeature.h"
#include "../levelgen/feature/BirchFeature.h"
#include "../levelgen/feature/BasicTree.h"
class ForestBiome: public Biome
{
@@ -15,7 +16,7 @@ public:
return new BirchFeature();
}
if (random->nextInt(3) == 0) {
//return new BasicTree();
return new BasicTree(false);
}
return new TreeFeature(false);
}