11 lines
244 B
C
11 lines
244 B
C
|
|
#pragma once
|
||
|
|
#include "Feature.h"
|
||
|
|
class Random;
|
||
|
|
|
||
|
|
class SwampTreeFeature : public Feature
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
virtual bool place(Level *level, Random *random, int x, int y, int z);
|
||
|
|
private:
|
||
|
|
void addVine(Level *level, int xx, int yy, int zz, int dir);
|
||
|
|
};
|