mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-08-20 09:57:09 +00:00
18 lines
453 B
C++
18 lines
453 B
C++
#include "stdafx.h"
|
|
#include "net.minecraft.world.level.levelgen.feature.h"
|
|
#include "net.minecraft.world.level.biome.h"
|
|
#include "net.minecraft.world.entity.animal.h"
|
|
#include "net.minecraft.world.entity.h"
|
|
#include "BirchForestBiome.h"
|
|
|
|
BirchForestBiome::BirchForestBiome(int id) : Biome(id)
|
|
{
|
|
decorator->treeCount = 10;
|
|
decorator->grassCount = 2;
|
|
}
|
|
|
|
Feature* BirchForestBiome::getTreeFeature(Random* random)
|
|
{
|
|
return new BirchFeature(false);
|
|
}
|