self-explanatory Reviewed-on: https://git.neolegacy.dev/neoStudiosLCE/neoLegacy/pulls/43
15 lines
259 B
C++
15 lines
259 B
C++
#pragma once
|
|
#include "Feature.h"
|
|
#include "Material.h"
|
|
|
|
class WeighedTreasure;
|
|
|
|
class MonsterRoomFeature : public Feature
|
|
{
|
|
public:
|
|
virtual bool place(Level *level, Random *random, int x, int y, int z);
|
|
|
|
private:
|
|
wstring randomEntityId(Random *random);
|
|
};
|