mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 04:43:36 +00:00
16 lines
276 B
C++
16 lines
276 B
C++
#pragma once
|
|
#include "Feature.h"
|
|
#include "../../Blocks/Material.h"
|
|
|
|
class Level;
|
|
|
|
class ClayFeature : public Feature {
|
|
private:
|
|
int tile;
|
|
int radius;
|
|
|
|
public:
|
|
ClayFeature(int radius);
|
|
|
|
virtual bool place(Level* level, Random* random, int x, int y, int z);
|
|
}; |