mirror of
https://gitea.murdle.top/murdle/mc-lce.git
synced 2026-03-11 03:28:59 +02:00
10 lines
182 B
C++
10 lines
182 B
C++
#pragma once
|
|
#include "Feature.h"
|
|
#include "Material.h"
|
|
|
|
class Level;
|
|
|
|
class CaveFeature : public Feature
|
|
{
|
|
virtual bool place(Level *level, Random *random, int x, int y, int z);
|
|
}; |