mirror of
https://github.com/neoStudiosLCE/neoLegacy.git
synced 2026-05-21 22:55:04 +00:00
13 lines
263 B
C++
13 lines
263 B
C++
#pragma once
|
|
#include "Feature.h"
|
|
|
|
class BlockBlobFeature : public Feature
|
|
{
|
|
private:
|
|
int blockId;
|
|
int startRadius;
|
|
|
|
public:
|
|
BlockBlobFeature(int blockId, int startRadius);
|
|
bool place(Level* level, Random* random, int x, int y, int z)override;;
|
|
}; |