mirror of
https://git.neolegacy.dev/pieeebot/cafeberry.git
synced 2026-09-23 12:23:07 +00:00
10 lines
191 B
C++
10 lines
191 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);
|
|
}; |