2026-03-01 12:16:08 +08:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "StructureStart.h"
|
|
|
|
|
|
|
|
|
|
class MineShaftStart : public StructureStart
|
|
|
|
|
{
|
|
|
|
|
public:
|
2026-03-01 11:00:23 -06:00
|
|
|
static StructureStart *Create() { return new MineShaftStart(); }
|
|
|
|
|
virtual EStructureStart GetType() { return eStructureStart_MineShaftStart; }
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
MineShaftStart();
|
2026-03-01 12:16:08 +08:00
|
|
|
MineShaftStart(Level *level, Random *random, int chunkX, int chunkZ);
|
|
|
|
|
};
|