mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/LegacyNetherFork.git
synced 2026-06-28 01:37:55 +00:00
17 lines
378 B
C++
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];
|
|
}; |