Files
mcpe/source/World/Generator/LargeCaveFeature.hpp
iProgramInCpp 7d331e76c7 * Decompile LargeFeature, LargeCaveFeature. Add in game for testing.
* Rename Random::nextTLong to Random::nextLong
2023-08-04 21:48:57 +03:00

14 lines
400 B
C++

#pragma once
#include "LargeFeature.hpp"
class LargeCaveFeature : public LargeFeature
{
public:
void addFeature(Level*, int ax, int az, int x, int z, TileID* tiles, int unk) override;
void addRoom(int x, int z, TileID* tiles, float rx, float ry, float rz);
void addTunnel(int x, int z, TileID* tiles, float rx, float ry, float rz, float x1, float ang, float x2, int x3, int x4, float x5);
};