aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/SandFeature.h
blob: 582e40d12455521fb777f672d46100d8b91d3b30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once
#include "Feature.h"
class Random;

class SandFeature : public Feature
{
private:
	int tile;
    int radius;

public:
	SandFeature(int radius, int tile);
    virtual bool place(Level *level, Random *random, int x, int y, int z);
};