mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/LegacyNetherFork.git
synced 2026-06-11 10:23:53 +00:00
10 lines
190 B
C++
10 lines
190 B
C++
#pragma once
|
|
#include "Feature.h"
|
|
|
|
class Level;
|
|
|
|
class NetherSoilFireFeature : public Feature
|
|
{
|
|
public:
|
|
virtual bool place(Level *level, Random *random, int x, int y, int z);
|
|
}; |