mirror of
https://github.com/neoStudiosLCE/neoLegacy.git
synced 2026-06-09 08:53:01 +00:00
16 lines
337 B
C++
16 lines
337 B
C++
#pragma once
|
|
|
|
#include "Biome.h"
|
|
|
|
class JungleBiome : public Biome
|
|
{
|
|
private:
|
|
bool isEdge;
|
|
|
|
public:
|
|
JungleBiome(int id, bool isEdge);
|
|
|
|
virtual Feature *getTreeFeature(Random *random) override;
|
|
virtual Feature *getGrassFeature(Random *random) override;
|
|
virtual void decorate(Level *level, Random *random, int xo, int zo) override;
|
|
}; |