From b691c43c44ff180d10e7d4a9afc83b98551ff586 Mon Sep 17 00:00:00 2001 From: daoge_cmd <3523206925@qq.com> Date: Sun, 1 Mar 2026 12:16:08 +0800 Subject: Initial commit --- Minecraft.World/MonsterRoomFeature.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Minecraft.World/MonsterRoomFeature.h (limited to 'Minecraft.World/MonsterRoomFeature.h') diff --git a/Minecraft.World/MonsterRoomFeature.h b/Minecraft.World/MonsterRoomFeature.h new file mode 100644 index 00000000..88304ad6 --- /dev/null +++ b/Minecraft.World/MonsterRoomFeature.h @@ -0,0 +1,16 @@ +#pragma once +#include "Feature.h" +#include "Material.h" + +class MonsterRoomFeature : public Feature +{ +private: + //int tile; + +public: + virtual bool place(Level *level, Random *random, int x, int y, int z); + +private: + shared_ptr randomItem(Random *random); + wstring randomEntityId(Random *random); +}; -- cgit v1.2.3