mirror of
https://github.com/neoStudiosLCE/neoLegacy.git
synced 2026-06-09 09:12:54 +00:00
16 lines
353 B
C++
16 lines
353 B
C++
#pragma once
|
|
|
|
#include "Biome.h"
|
|
|
|
class PlainsBiome : public Biome
|
|
{
|
|
friend class Biome;
|
|
protected:
|
|
bool _plains;
|
|
protected:
|
|
PlainsBiome(int id,bool plains);
|
|
virtual Feature* getFlowerFeature(Random* random, int x, int y, int z) override;
|
|
void decorate(Level* level, Random* rand, int xo, int zo)override;
|
|
bool isPlains() { return _plains; };
|
|
|
|
}; |