mirror of
https://github.com/celisej567/mcpe.git
synced 2026-09-11 20:11:18 +03:00
21 lines
348 B
C++
21 lines
348 B
C++
#pragma once
|
|
|
|
#include "LargeFeature.hpp"
|
|
#include "Random.hpp"
|
|
#include "Level.hpp"
|
|
|
|
class LargeFeature
|
|
{
|
|
public:
|
|
LargeFeature();
|
|
virtual ~LargeFeature();
|
|
virtual void apply(ChunkSource*, Level*, int, int, TileID*, int);
|
|
virtual void addFeature(Level*, int, int, int, int, TileID*, int) = 0;
|
|
|
|
|
|
public:
|
|
int m_radius = 8;
|
|
Random m_random;
|
|
};
|
|
|