LeviLamina
Loading...
Searching...
No Matches
WorldGenContext.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class Aquifer;
8class Block;
9class BlockPos;
11// clang-format on
12
13struct WorldGenContext {
14public:
15 // member variables
16 // NOLINTBEGIN
17 ::ll::TypedStorage<8, 8, ::Aquifer*> mAquifer;
18 ::ll::TypedStorage<8, 64, ::std::function<void(::BlockPos const&, ::Block const&, int)>> mTickUpdateFn;
19 ::ll::TypedStorage<8, 8, ::IPreliminarySurfaceProvider const*> mPreliminarySurfaceProvider;
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 WorldGenContext& operator=(WorldGenContext const&);
25
26public:
27 // member functions
28 // NOLINTBEGIN
29 MCAPI WorldGenContext();
30
31 MCAPI WorldGenContext(::WorldGenContext const&);
32
33 MCAPI ~WorldGenContext();
34 // NOLINTEND
35
36public:
37 // constructor thunks
38 // NOLINTBEGIN
39 MCAPI void* $ctor();
40
41 MCAPI void* $ctor(::WorldGenContext const&);
42 // NOLINTEND
43
44public:
45 // destructor thunk
46 // NOLINTBEGIN
47 MCFOLD void $dtor();
48 // NOLINTEND
49};
Definition Aquifer.h:17
Definition BlockPos.h:19
Definition Block.h:43
Definition IPreliminarySurfaceProvider.h:8