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