mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-01 09:43:47 +00:00
17 lines
341 B
C++
17 lines
341 B
C++
#pragma once
|
|
#include "Feature.h"
|
|
#include "../../Blocks/Material.h"
|
|
|
|
class MonsterRoomFeature : public Feature
|
|
{
|
|
private:
|
|
//int tile;
|
|
|
|
public:
|
|
virtual bool place(Level *level, Random *random, int x, int y, int z);
|
|
|
|
private:
|
|
std::shared_ptr<ItemInstance> randomItem(Random *random);
|
|
std::wstring randomEntityId(Random *random);
|
|
};
|