mirror of
https://git.neolegacy.dev/pieeebot/cafeberry.git
synced 2026-09-23 11:42:28 +00:00
11 lines
165 B
C++
11 lines
165 B
C++
#pragma once
|
|
#include "Biome.h"
|
|
|
|
class ForestBiome : public Biome
|
|
{
|
|
public:
|
|
ForestBiome(int id);
|
|
|
|
virtual Feature *getTreeFeature(Random *random);
|
|
};
|