mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-08-19 09:47:13 +00:00
17 lines
456 B
C++
17 lines
456 B
C++
#pragma once
|
|
|
|
#include "StructureStart.h"
|
|
#include "minecraft/world/level/levelgen/structure/StructureFeatureIO.h"
|
|
|
|
class Level;
|
|
class Random;
|
|
|
|
class MineShaftStart : public StructureStart {
|
|
public:
|
|
static StructureStart* Create() { return new MineShaftStart(); }
|
|
virtual EStructureStart GetType() { return eStructureStart_MineShaftStart; }
|
|
|
|
public:
|
|
MineShaftStart();
|
|
MineShaftStart(Level* level, Random* random, int chunkX, int chunkZ);
|
|
}; |