MinecraftConsoles/Minecraft.World/BirchForestBiome.h
2026-03-15 21:09:31 +03:00

11 lines
162 B
C++

#pragma once
#include "Biome.h"
class BirchForestBiome : public Biome
{
public:
BirchForestBiome(int id);
virtual Feature* getTreeFeature(Random* random);
};