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