first commit
This commit is contained in:
23
Minecraft.World/LargeFeature.h
Normal file
23
Minecraft.World/LargeFeature.h
Normal file
@@ -0,0 +1,23 @@
|
||||
#pragma once
|
||||
#include "ChunkSource.h"
|
||||
|
||||
class Level;
|
||||
|
||||
class LargeFeature
|
||||
{
|
||||
public:
|
||||
static const wstring STRONGHOLD;
|
||||
protected:
|
||||
int radius;
|
||||
Random *random;
|
||||
Level *level;
|
||||
|
||||
public:
|
||||
LargeFeature();
|
||||
~LargeFeature();
|
||||
|
||||
virtual void apply(ChunkSource *ChunkSource, Level *level, int xOffs, int zOffs, byteArray blocks);
|
||||
|
||||
protected:
|
||||
virtual void addFeature(Level *level, int x, int z, int xOffs, int zOffs, byteArray blocks) {}
|
||||
};
|
||||
Reference in New Issue
Block a user