LeviLamina
Loading...
Searching...
No Matches
Cavifier.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class Vec3;
8// clang-format on
9
10class Cavifier {
11public:
12 // member variables
13 // NOLINTBEGIN
17 // NOLINTEND
18
19public:
20 // prevent constructor by default
21 Cavifier& operator=(Cavifier const&);
22 Cavifier(Cavifier const&);
23 Cavifier();
24
25public:
26 // member functions
27 // NOLINTBEGIN
28 MCAPI float _getSpaghetti2d(::Vec3 worldPos) const;
29
30 MCAPI float _getSpaghetti3D(::Vec3 worldPos) const;
31
32 MCAPI float cavify(::Vec3 worldPos, int density, float) const;
33 // NOLINTEND
34};
Definition Cavifier.h:10
Definition Vec3.h:10
Definition Alias.h:14