mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-24 00:03:02 +00:00
9 lines
247 B
C++
9 lines
247 B
C++
#pragma once
|
|
|
|
#include "StructureFeature.h"
|
|
|
|
class MineShaftFeature : public StructureFeature {
|
|
protected:
|
|
virtual bool isFeatureChunk(int x, int z, bool bIsSuperflat = false);
|
|
virtual StructureStart* createStructureStart(int x, int z);
|
|
}; |