10 lines
149 B
C++
10 lines
149 B
C++
#pragma once
|
|
#include "Biome.h"
|
|
|
|
class TaigaBiome : public Biome
|
|
{
|
|
public:
|
|
TaigaBiome(int id);
|
|
|
|
virtual Feature *getTreeFeature(Random *random);
|
|
}; |