mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-08-20 09:57:09 +00:00
11 lines
162 B
C++
11 lines
162 B
C++
#pragma once
|
|
#include "Biome.h"
|
|
|
|
class BirchForestBiome : public Biome
|
|
{
|
|
public:
|
|
BirchForestBiome(int id);
|
|
|
|
virtual Feature* getTreeFeature(Random* random);
|
|
};
|