17 lines
252 B
C++
17 lines
252 B
C++
#pragma once
|
|
#include "Feature.h"
|
|
#include "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);
|
|
}; |