the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#pragma once
2#include "Feature.h"
3#include "Material.h"
4
5class WeighedTreasure;
6
7class MonsterRoomFeature : public Feature
8{
9private:
10
11 static const int TREASURE_ITEMS_COUNT = 15;
12 static WeighedTreasure *monsterRoomTreasure[TREASURE_ITEMS_COUNT];
13
14public:
15 virtual bool place(Level *level, Random *random, int x, int y, int z);
16
17private:
18 wstring randomEntityId(Random *random);
19};