mirror of
https://github.com/neoStudiosLCE/neoLegacy.git
synced 2026-07-07 19:17:03 +00:00
16 lines
286 B
C++
16 lines
286 B
C++
#pragma once
|
|
#include "Biome.h"
|
|
|
|
class ForestBiome : public Biome
|
|
{
|
|
private:
|
|
int biomeType;
|
|
|
|
public:
|
|
ForestBiome(int id, int type = 0);
|
|
|
|
virtual Feature *getTreeFeature(Random *random) override;
|
|
|
|
|
|
virtual Biome *setColor(int color, bool b = false) override;
|
|
}; |