aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/CaveFeature.h
blob: 961b2dff81d7a2ffe7549c56a8d1630759bad471 (plain)
1
2
3
4
5
6
7
8
9
10
#pragma once
#include "Feature.h"
#include "Material.h"

class Level;

class CaveFeature : public Feature
{
	virtual bool place(Level *level, Random *random, int x, int y, int z);
};