Files
MinecraftConsoles/Minecraft.World/HellSpringFeature.h

15 lines
248 B
C
Raw Normal View History

2026-03-01 12:16:08 +08:00
#pragma once
#include "Feature.h"
class HellSpringFeature : public Feature
{
private:
int tile;
bool insideRock;
2026-03-01 12:16:08 +08:00
public:
HellSpringFeature(int tile, bool insideRock);
2026-03-01 12:16:08 +08:00
virtual bool place(Level *level, Random *random, int x, int y, int z);
2026-03-01 12:16:08 +08:00
};