aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/LakeFeature.h
blob: ddaebc14a4013f4f8c0048651d5844c1df7f9855 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once
#include "Feature.h"
#include "Material.h"

class LakeFeature : public Feature
{
private:
	int tile;

public:
	LakeFeature (int tile);

	virtual bool place(Level *level, Random *random, int x, int y, int z);
};