mirror of
https://github.com/neoStudiosLCE/neoLegacy.git
synced 2026-06-09 08:53:01 +00:00
14 lines
397 B
C++
14 lines
397 B
C++
#pragma once
|
|
#include "Biome.h"
|
|
|
|
class TaigaBiome : public Biome
|
|
{
|
|
private:
|
|
int type;
|
|
public:
|
|
TaigaBiome(int id, int type = 0);
|
|
|
|
virtual Feature *getTreeFeature(Random *random) override;
|
|
virtual void decorate(Level *level, Random *random, int xo, int zo) override;
|
|
virtual void buildSurfaceAtDefault(Level *level, Random *random, byte* chunkBlocks, int x, int z, double noiseVal) override;
|
|
}; |