mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 08:03:41 +00:00
11 lines
251 B
C++
11 lines
251 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);
|
|
}; |