Files
cafeberry/Minecraft.World/RainforestBiome.h
T
2026-07-03 18:34:01 +01:00

9 lines
166 B
C++

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