12 lines
203 B
C
12 lines
203 B
C
|
|
#pragma once
|
||
|
|
#include "Feature.h"
|
||
|
|
|
||
|
|
class Level;
|
||
|
|
|
||
|
|
class BirchFeature : public Feature
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
BirchFeature(bool doUpdate);
|
||
|
|
virtual bool place(Level *level, Random *random, int x, int y, int z);
|
||
|
|
};
|