mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/LegacyNetherFork.git
synced 2026-06-17 16:01:53 +00:00
20 lines
409 B
C++
20 lines
409 B
C++
#pragma once
|
|
#include "Feature.h"
|
|
#include "Material.h"
|
|
|
|
class WeighedTreasure;
|
|
|
|
class NetherDungeonFeature : public Feature
|
|
{
|
|
private:
|
|
|
|
static const int TREASURE_ITEMS_COUNT = 13;
|
|
static WeighedTreasure *netherDungeonTreasure[TREASURE_ITEMS_COUNT];
|
|
|
|
public:
|
|
virtual bool place(Level *level, Random *random, int x, int y, int z);
|
|
|
|
private:
|
|
wstring randomEntityId(Random *random);
|
|
};
|