Files
deadvoxelx-HellishEnds/Minecraft.World/EndTowerFeature.h
2026-04-13 18:46:53 -04:00

17 lines
378 B
C++

#pragma once
#include "Feature.h"
#include "Material.h"
class WeighedTreasure;
class EndTowerFeature : public Feature
{
public:
EndTowerFeature(int blockId);
virtual bool place(Level *level, Random *random, int x, int y, int z);
private:
static const int TREASURE_ITEMS_COUNT = 12;
static WeighedTreasure *endTowerTreasure[TREASURE_ITEMS_COUNT];
};