1#pragma once 2#include "Biome.h" 3 4class ForestBiome : public Biome 5{ 6public: 7 ForestBiome(int id); 8 9 virtual Feature *getTreeFeature(Random *random); 10};