mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-26 20:03:41 +00:00
21 lines
605 B
C++
21 lines
605 B
C++
#pragma once
|
|
|
|
#include "StructureFeature.h"
|
|
#include "../Structures/StructureStart.h"
|
|
|
|
class RandomScatteredLargeFeature : public StructureFeature {
|
|
public:
|
|
static void staticCtor();
|
|
static std::vector<Biome*> allowedBiomes;
|
|
RandomScatteredLargeFeature();
|
|
|
|
protected:
|
|
virtual bool isFeatureChunk(int x, int z, bool bIsSuperflat = false);
|
|
StructureStart* createStructureStart(int x, int z);
|
|
|
|
class ScatteredFeatureStart : public StructureStart {
|
|
public:
|
|
ScatteredFeatureStart(Level* level, Random* random, int chunkX,
|
|
int chunkZ);
|
|
};
|
|
}; |