mirror of
https://github.com/neoStudiosLCE/neoLegacy.git
synced 2026-07-14 00:57:05 +00:00
11 lines
207 B
C++
11 lines
207 B
C++
#pragma once
|
|
|
|
#include "Biome.h"
|
|
|
|
class PlainsBiome : public Biome
|
|
{
|
|
friend class Biome;
|
|
protected:
|
|
PlainsBiome(int id);
|
|
virtual Feature* getFlowerFeature(Random* random, int x, int y, int z) override;
|
|
}; |