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
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
30
31 MCAPI ~WorldGenContext();
32 // NOLINTEND
33
34public:
35 // constructor thunks
36 // NOLINTBEGIN
37 MCAPI void* $ctor(::WorldGenContext const&);
38 // NOLINTEND
39
40public:
41 // destructor thunk
42 // NOLINTBEGIN
43 MCFOLD void $dtor();
44 // NOLINTEND
45};
Definition Aquifer.h:14
Definition BlockPos.h:18
Definition Block.h:36
Definition IPreliminarySurfaceProvider.h:8
Definition WorldGenContext.h:13