Files
deadvoxelx-HellishEnds/Minecraft.World/NetherTreeFeature.h
2026-03-25 11:12:08 -04:00

11 lines
254 B
C++

#pragma once
#include "Feature.h"
class Level;
class NetherTreeFeature : 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);
};