mirror of
https://github.com/LCEMP/LCEMP.git
synced 2026-04-23 07:24:14 +00:00
9 lines
153 B
C++
9 lines
153 B
C++
#pragma once
|
|
|
|
#include "Feature.h"
|
|
|
|
class DesertWellFeature : public Feature
|
|
{
|
|
public:
|
|
bool place(Level *level, Random *random, int x, int y, int z);
|
|
}; |