neoLegacy/Minecraft.World/PlainsBiome.h
2026-03-24 13:41:49 +01:00

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;
};