mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-06 05:33:37 +00:00
16 lines
348 B
C++
16 lines
348 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);
|
|
};
|