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


class HellSpringFeature : public Feature
{
private:
	int tile;

public:
	HellSpringFeature(int tile);

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